]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Macro safety: fix `pow(a, b)`
authorTimePath <andrew.hardaker1995@gmail.com>
Wed, 25 Apr 2018 12:33:30 +0000 (12:33 +0000)
committerTimePath <andrew.hardaker1995@gmail.com>
Wed, 25 Apr 2018 12:33:30 +0000 (12:33 +0000)
qcsrc/lib/_all.inc

index d45dc208e0149d24c195bc5bc71bcf5271bad793..addced2b3f0a5d6aa7932f9cc224ed5843047bfd 100644 (file)
@@ -64,7 +64,7 @@
 #ifndef QCC_SUPPORT_POW
     #define pow(a, b) pow(a, b)
 #else
-    #define pow(a, b) (a ** b)
+    #define pow(a, b) ((a) ** (b))
 #endif
 
 #include "self.qh"