aboutsummaryrefslogtreecommitdiffstats
path: root/src/3rdparty
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2019-12-09 00:09:02 +0100
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2019-12-16 00:57:22 +0100
commit67417e8bc9e5fc66e6c3fc83e6b9a13694a01e9d (patch)
treed9b48227bf866ca6d798abc5b90c59704410f572 /src/3rdparty
parent67cb80db8ea1581d632db30ff26b03b1287cb393 (diff)
Remove use of wrapper macros for feature detection
Change-Id: Ic9cd7e4ff2c5d253879b0aeaa15dbc25cad82891 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/3rdparty')
-rw-r--r--src/3rdparty/masm/stubs/wtf/Optional.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/masm/stubs/wtf/Optional.h b/src/3rdparty/masm/stubs/wtf/Optional.h
index 602dbc1b43..e0fd4421a9 100644
--- a/src/3rdparty/masm/stubs/wtf/Optional.h
+++ b/src/3rdparty/masm/stubs/wtf/Optional.h
@@ -43,7 +43,7 @@
#include <QtQml/private/qtqmlglobal_p.h>
#include <memory>
-#if __cplusplus > 201402L && QT_HAS_INCLUDE(<optional>)
+#if __cplusplus > 201402L && __has_include(<optional>)
#include <optional>
#else