summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-11-30 11:34:59 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-11-30 11:34:59 +0100
commit2acd3a86dedefcb19347ce22672a61f330a9d5e2 (patch)
treeba34e51044fb2c42d21fd770db8bfd890fab6b72
parent2488f5c0d9020a9aae7c716a4af34b8b911e1486 (diff)
downloadATCD-2acd3a86dedefcb19347ce22672a61f330a9d5e2.tar.gz
Removed setting of no_deprecated=1 when we are setting c++11 or newer, not good to hide deprecation warnings by default
* ACE/include/makeinclude/platform_g++_common.GNU: * ACE/include/makeinclude/platform_linux_clang.GNU:
-rw-r--r--ACE/include/makeinclude/platform_g++_common.GNU8
-rw-r--r--ACE/include/makeinclude/platform_linux_clang.GNU1
2 files changed, 0 insertions, 9 deletions
diff --git a/ACE/include/makeinclude/platform_g++_common.GNU b/ACE/include/makeinclude/platform_g++_common.GNU
index f635763de77..fb58a60cb24 100644
--- a/ACE/include/makeinclude/platform_g++_common.GNU
+++ b/ACE/include/makeinclude/platform_g++_common.GNU
@@ -93,23 +93,15 @@ endif
ifeq ($(c++20),1)
CCFLAGS += -std=c++20
- # This is needed due to the use of the deprecated auto_ptr class
- no_deprecated ?= 1
else
ifeq ($(c++17),1)
CCFLAGS += -std=c++17
- # This is needed due to the use of the deprecated auto_ptr class
- no_deprecated ?= 1
else
ifeq ($(c++14),1)
CCFLAGS += -std=c++14
- # This is needed due to the use of the deprecated auto_ptr class
- no_deprecated ?= 1
else
ifeq ($(c++11),1)
CCFLAGS += -std=c++11
- # This is needed due to the use of the deprecated auto_ptr class
- no_deprecated ?= 1
endif # c++11
endif # c++14
endif #c++17
diff --git a/ACE/include/makeinclude/platform_linux_clang.GNU b/ACE/include/makeinclude/platform_linux_clang.GNU
index 298670d05b6..f5d4da11398 100644
--- a/ACE/include/makeinclude/platform_linux_clang.GNU
+++ b/ACE/include/makeinclude/platform_linux_clang.GNU
@@ -43,7 +43,6 @@ endif
ifeq ($(c++11),1)
CCFLAGS += -std=c++11
- no_deprecated ?= 1
endif
ifeq ($(no_deprecated),1)