summaryrefslogtreecommitdiff
path: root/ACE/include/makeinclude
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-11-10 08:44:15 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-11-10 08:44:15 +0100
commit32927bac2d22eca7b6d2c4bc69e54b2bfe1bdb2f (patch)
tree957fbe18033d4275c25ab8bc77e33c0863262843 /ACE/include/makeinclude
parent5988aed218708bd0034def31acd064a2ae785e19 (diff)
downloadATCD-32927bac2d22eca7b6d2c4bc69e54b2bfe1bdb2f.tar.gz
Removed support for c++0x, use c++11
* ACE/include/makeinclude/platform_clang_common.GNU:
Diffstat (limited to 'ACE/include/makeinclude')
-rw-r--r--ACE/include/makeinclude/platform_clang_common.GNU10
1 files changed, 3 insertions, 7 deletions
diff --git a/ACE/include/makeinclude/platform_clang_common.GNU b/ACE/include/makeinclude/platform_clang_common.GNU
index cfd7f81f1a3..b89b32297cf 100644
--- a/ACE/include/makeinclude/platform_clang_common.GNU
+++ b/ACE/include/makeinclude/platform_clang_common.GNU
@@ -86,13 +86,9 @@ ifeq ($(no_strict_aliasing), 1)
CCFLAGS += -fno-strict-aliasing
endif
-ifeq ($(c++0x),1)
- CCFLAGS += -std=c++0x
-else
- ifeq ($(c++11),1)
- CCFLAGS += -std=c++11
- endif # c++11
-endif # c++0x
+ifeq ($(c++11),1)
+ CCFLAGS += -std=c++11
+endif # c++11
ifeq ($(shared_libs), 1)
ifneq ($(static_libs_only), 1)