mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 10:05:32 +01:00
17 lines
498 B
Diff
17 lines
498 B
Diff
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));
|
|
}
|
|
|
|
}
|