Inline pow_neg - removes build warning (#891)

This commit is contained in:
syund 2021-10-22 20:40:43 -04:00 committed by GitHub
parent 4fb844bddd
commit 6fc3c9c868
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) {