summaryrefslogtreecommitdiff
path: root/ACE/ace/config-all.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-06-07 21:22:22 +0200
committerGitHub <noreply@github.com>2021-06-07 21:22:22 +0200
commit072c0939cc2a824ced1fb3ab7091b74c3bb092c3 (patch)
tree434d62446c8d490c0309774d510b39e9c4150a81 /ACE/ace/config-all.h
parent6f6f7ea0c8fcde679ef21a59a4686043b02d3057 (diff)
parentd8971212c4f9e3ddef1965d93e55a9814f0161a4 (diff)
downloadATCD-072c0939cc2a824ced1fb3ab7091b74c3bb092c3.tar.gz
Merge branch 'master' into jwi-ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB
Diffstat (limited to 'ACE/ace/config-all.h')
-rw-r--r--ACE/ace/config-all.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/ACE/ace/config-all.h b/ACE/ace/config-all.h
index e2d162e9f21..e16e80c0c8f 100644
--- a/ACE/ace/config-all.h
+++ b/ACE/ace/config-all.h
@@ -92,6 +92,18 @@
# define ACE_HAS_STANDARD_CPP_LIBRARY 1
#endif
+// Define ACE_NEW_THROWS_EXCEPTIONS for all compilers, we
+// expect all compilers to do so
+#if !defined (ACE_NEW_THROWS_EXCEPTIONS)
+# define ACE_NEW_THROWS_EXCEPTIONS
+#endif /* ACE_NEW_THROWS_EXCEPTIONS */
+
+// Define ACE_HAS_NEW_NOTHROW for all compilers, we
+// except all compilers to support this
+#if !defined (ACE_HAS_NEW_NOTHROW)
+# define ACE_HAS_NEW_NOTHROW
+#endif /* ACE_HAS_NEW_NOTHROW */
+
// These includes are here to avoid circular dependencies.
// Keep this at the bottom of the file. It contains the main macros.
#include "ace/OS_main.h"