Remove check for obsolete DMC version.

[SVN r86043]
This commit is contained in:
Stephen Kelly 2013-09-30 00:36:13 +00:00
parent 3d1646cf51
commit 4dc9659097

View File

@ -28,11 +28,7 @@ namespace detail
inline void current_function_helper()
{
#if defined(__GNUC__) || (defined(__MWERKS__) && (__MWERKS__ >= 0x3000)) || (defined(__ICC) && (__ICC >= 600)) || defined(__ghs__)
# define BOOST_CURRENT_FUNCTION __PRETTY_FUNCTION__
#elif defined(__DMC__) && (__DMC__ >= 0x810)
#if defined(__GNUC__) || (defined(__MWERKS__) && (__MWERKS__ >= 0x3000)) || (defined(__ICC) && (__ICC >= 600)) || defined(__ghs__) || defined(__DMC__)
# define BOOST_CURRENT_FUNCTION __PRETTY_FUNCTION__