summaryrefslogtreecommitdiff
path: root/ACE/ace/Global_Macros.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2023-02-22 13:32:35 +0100
committerGitHub <noreply@github.com>2023-02-22 13:32:35 +0100
commit4ea44f59178bba284ec90eea7352ce95ecd3ee6a (patch)
treecb70c0bb344cb9412e9a8d1217cf1831019ae484 /ACE/ace/Global_Macros.h
parent54406e2ff1e39a3245d04253648153d5f4751938 (diff)
parent606a42cd58a161c971723d10713699d922530a28 (diff)
downloadATCD-4ea44f59178bba284ec90eea7352ce95ecd3ee6a.tar.gz
Merge pull request #2052 from jwillemsen/jwi-gcc14
ACE/TAO now require C++14 or newer
Diffstat (limited to 'ACE/ace/Global_Macros.h')
-rw-r--r--ACE/ace/Global_Macros.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/Global_Macros.h b/ACE/ace/Global_Macros.h
index bc9b20a4962..5520938f01c 100644
--- a/ACE/ace/Global_Macros.h
+++ b/ACE/ace/Global_Macros.h
@@ -57,9 +57,9 @@
# define ACE_SET_BITS(WORD, BITS) (WORD |= (BITS))
# define ACE_CLR_BITS(WORD, BITS) (WORD &= ~(BITS))
-#if !defined (ACE_HAS_CPP11)
-# error ACE/TAO require C++11 compliance, please upgrade your compiler and/or fix the platform configuration for your environment
-#endif /* !ACE_HAS_CPP11 */
+#if !defined (ACE_HAS_CPP14)
+# error ACE/TAO require C++14 compliance, please upgrade your compiler and/or fix the platform configuration for your environment
+#endif
#define ACE_UNIMPLEMENTED_FUNC(f) f = delete;