aboutsummaryrefslogtreecommitdiffstats
path: root/src/3rdparty
diff options
context:
space:
mode:
authorJulien Gueytat <contact@jgueytat.fr>2016-10-18 10:21:55 +0200
committerJulien Gueytat <contact@jgueytat.fr>2017-01-22 21:59:19 +0000
commit63ce81bb052a5c462cf30f2e4293466fb9084f5a (patch)
tree6d9e9e43f9dca4ca4ae2b7a9d978894b2039d386 /src/3rdparty
parent03505d6eb7164298617c1a88979e802d7da12e15 (diff)
No need to define c99 math functions in c++11 mode
Change-Id: I5a04cb678ad4a222d2a716dd1499f5103bb66c8e Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/3rdparty')
-rw-r--r--src/3rdparty/masm/wtf/MathExtras.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/masm/wtf/MathExtras.h b/src/3rdparty/masm/wtf/MathExtras.h
index 75e3670367..3740d54beb 100644
--- a/src/3rdparty/masm/wtf/MathExtras.h
+++ b/src/3rdparty/masm/wtf/MathExtras.h
@@ -88,7 +88,7 @@ inline double wtf_ceil(double x) { return copysign(ceil(x), x); }
#endif
-#if OS(SOLARIS)
+#if OS(SOLARIS) && __cplusplus < 201103L
namespace std {