blob: 1df0cff8ca186ef88d09f9acb8f115270c8370cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
dep/g3dlite/include/G3D/g3dmath.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dep/g3dlite/include/G3D/g3dmath.h b/dep/g3dlite/include/G3D/g3dmath.h
index a32fdaf..54cc6ed 100644
--- a/dep/g3dlite/include/G3D/g3dmath.h
+++ b/dep/g3dlite/include/G3D/g3dmath.h
@@ -934,7 +934,7 @@ inline double signedPow(double b, double e) {
namespace std {
inline int pow(int a, int b) {
- return (int)pow(double(a), double(b));
+ return (int)::pow(double(a), double(b));
}
}
|