Add parens to macro (#3361)

This commit is contained in:
Ben Meadors 2024-03-09 15:25:16 -06:00 committed by GitHub
parent 3da7c0dba7
commit 7167f1e04f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,7 +11,7 @@
#define PI 3.1415926535897932384626433832795
#define OLC_CODE_LEN 11
#define DEG_CONVERT 180 / PI
#define DEG_CONVERT (180 / PI)
// Helper functions
// Raises a number to an exponent, handling negative exponents.