From a1e29d53e3002dcff5fbc27f96f07feffc8424f7 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Mon, 4 Nov 2002 22:08:45 +0000 Subject: [PATCH] apparently gcc 2.95 does not support the throw specification --- src/libCom/misc/cxxCompilerDependencies.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libCom/misc/cxxCompilerDependencies.h b/src/libCom/misc/cxxCompilerDependencies.h index 95d19ecec..5b70a2731 100644 --- a/src/libCom/misc/cxxCompilerDependencies.h +++ b/src/libCom/misc/cxxCompilerDependencies.h @@ -45,6 +45,8 @@ #elif defined ( __GNUC__ ) # if __GNUC__ > 2 || ( __GNUC__ == 2 && __GNUC_MINOR__ >= 95 ) # define CXX_PLACEMENT_DELETE +# endif +# if __GNUC__ > 2 || ( __GNUC__ == 2 && __GNUC_MINOR__ >= 96 ) # define CXX_THROW_SPECIFICATION # endif #else