From 2f2fe38142b71f6174c7567d52e6374bbaa3e5eb Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sun, 7 Jul 2002 10:44:08 +0000 Subject: [PATCH] Added detection for exception and long long support. [SVN r14320] --- include/boost/config/compiler/common_edg.hpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/boost/config/compiler/common_edg.hpp b/include/boost/config/compiler/common_edg.hpp index c8522dd1..93a5ee3a 100644 --- a/include/boost/config/compiler/common_edg.hpp +++ b/include/boost/config/compiler/common_edg.hpp @@ -26,9 +26,18 @@ # define BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP #endif +# if !defined(__EXCEPTIONS) +# define BOOST_NO_EXCEPTIONS +# endif + +# if !defined(__NO_LONG_LONG) +# define BOOST_HAS_LONG_LONG +# endif + #ifdef c_plusplus // EDG has "long long" in non-strict mode // However, some libraries have insufficient "long long" support // #define BOOST_HAS_LONG_LONG #endif +