mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 04:39:00 +08:00
20 lines
811 B
Diff
20 lines
811 B
Diff
|
diff --git a/src/PQP_Compile.h b/src/PQP_Compile.h
|
||
|
index f76c981..8a70710 100644
|
||
|
--- a/src/PQP_Compile.h
|
||
|
+++ b/src/PQP_Compile.h
|
||
|
@@ -44,10 +44,10 @@
|
||
|
// prevents compiler warnings when PQP_REAL is float
|
||
|
|
||
|
#include <math.h>
|
||
|
-inline float sqrt(float x) { return (float)sqrt((double)x); }
|
||
|
-inline float cos(float x) { return (float)cos((double)x); }
|
||
|
-inline float sin(float x) { return (float)sin((double)x); }
|
||
|
-inline float fabs(float x) { return (float)fabs((double)x); }
|
||
|
+//inline float sqrt(float x) { return (float)sqrt((double)x); }
|
||
|
+//inline float cos(float x) { return (float)cos((double)x); }
|
||
|
+//inline float sin(float x) { return (float)sin((double)x); }
|
||
|
+//inline float fabs(float x) { return (float)fabs((double)x); }
|
||
|
|
||
|
//-------------------------------------------------------------------------
|
||
|
//
|