From 8fcfa33d33e40459ac8e543fc81dbddf20ed863c Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 28 Nov 2002 13:32:44 +0000 Subject: [PATCH] Fix: Comeau with bcc32 as backend defines __BORLANDC__ as 1. [SVN r16455] --- include/boost/current_function.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/current_function.hpp b/include/boost/current_function.hpp index 2cfd604..66cb729 100644 --- a/include/boost/current_function.hpp +++ b/include/boost/current_function.hpp @@ -35,7 +35,7 @@ inline void current_function_helper() # define BOOST_CURRENT_FUNCTION __FUNCSIG__ -#elif defined(__BORLANDC__) +#elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x550) # define BOOST_CURRENT_FUNCTION __FUNC__