blob: 51a4f15d5ecc2bcceacca9652b9852fdf09f1b68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--- a/PQP_v1.3/src/PQP_Compile.h
+++ b/PQP_v1.3/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); }
//-------------------------------------------------------------------------
//
|