From 4dc965909729ad0d7e1c669bbc4383d33ebe97c9 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Mon, 30 Sep 2013 00:36:13 +0000 Subject: [PATCH] Remove check for obsolete DMC version. [SVN r86043] --- include/boost/current_function.hpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/include/boost/current_function.hpp b/include/boost/current_function.hpp index 2904789..7b0d918 100644 --- a/include/boost/current_function.hpp +++ b/include/boost/current_function.hpp @@ -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__