blob: 4a2084d25f1d888c76baf14624fd976187fd12bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
Index: qtdeclarative-opensource-src-5.2.1/src/3rdparty/masm/wtf/MathExtras.h
===================================================================
--- qtdeclarative-opensource-src-5.2.1.orig/src/3rdparty/masm/wtf/MathExtras.h 2014-02-02 00:38:03.000000000 +0400
+++ qtdeclarative-opensource-src-5.2.1/src/3rdparty/masm/wtf/MathExtras.h 2014-04-27 09:50:11.005274127 +0400
@@ -88,24 +88,6 @@
#endif
-#if OS(SOLARIS)
-
-namespace std {
-
-#ifndef isfinite
-inline bool isfinite(double x) { return finite(x) && !isnand(x); }
-#endif
-#ifndef signbit
-inline bool signbit(double x) { return copysign(1.0, x) < 0; }
-#endif
-#ifndef isinf
-inline bool isinf(double x) { return !finite(x) && !isnand(x); }
-#endif
-
-} // namespace std
-
-#endif
-
#if OS(OPENBSD)
namespace std {
|