mirror of
https://github.com/meshtastic/firmware.git
synced 2025-08-17 10:43:24 +00:00
Inline pow_neg - removes build warning (#891)
This commit is contained in:
parent
4fb844bddd
commit
6fc3c9c868
@ -14,7 +14,7 @@
|
||||
|
||||
// Helper functions
|
||||
// Raises a number to an exponent, handling negative exponents.
|
||||
static double pow_neg(double base, double exponent) {
|
||||
static inline double pow_neg(double base, double exponent) {
|
||||
if (exponent == 0) {
|
||||
return 1;
|
||||
} else if (exponent > 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user