From ef7a510e86937718edb475b714d24943a9699263 Mon Sep 17 00:00:00 2001 From: Boris Gubenko Date: Tue, 11 Sep 2007 18:54:50 +0000 Subject: [PATCH] base detection of EDG-based compiler on __EDG__ macro [SVN r39193] --- include/boost/config/compiler/hp_acc.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/boost/config/compiler/hp_acc.hpp b/include/boost/config/compiler/hp_acc.hpp index b2bcbb6d..429ee54e 100644 --- a/include/boost/config/compiler/hp_acc.hpp +++ b/include/boost/config/compiler/hp_acc.hpp @@ -12,8 +12,7 @@ // HP aCC C++ compiler setup: -#if (((__HP_aCC >= 61200) && defined(__EDG__)) ||\ - ((__HP_aCC >= 38000) && defined(__hpxstd98))) +#if defined(__EDG__) #include "boost/config/compiler/common_edg.hpp" #endif