diff options
Diffstat (limited to 'dep/g3dlite/include/G3D/g3dmath.h')
-rw-r--r-- | dep/g3dlite/include/G3D/g3dmath.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dep/g3dlite/include/G3D/g3dmath.h b/dep/g3dlite/include/G3D/g3dmath.h index a32fdaf604d..54cc6ed3704 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)); } } |