Inline pow_neg - removes build warning (#891)
This commit is contained in:
+1
-1
@@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
// Helper functions
|
// Helper functions
|
||||||
// Raises a number to an exponent, handling negative exponents.
|
// 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) {
|
if (exponent == 0) {
|
||||||
return 1;
|
return 1;
|
||||||
} else if (exponent > 0) {
|
} else if (exponent > 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user