Fix: Comeau with bcc32 as backend defines __BORLANDC__ as 1.

[SVN r16455]
This commit is contained in:
Peter Dimov 2002-11-28 13:32:44 +00:00
parent aa65e3da3b
commit 8fcfa33d33

View File

@ -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__