Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r86043 - trunk/boost
From: steveire_at_[hidden]
Date: 2013-09-29 20:36:13


Author: skelly
Date: 2013-09-29 20:36:13 EDT (Sun, 29 Sep 2013)
New Revision: 86043
URL: http://svn.boost.org/trac/boost/changeset/86043

Log:
Remove check for obsolete DMC version.

Text files modified:
   trunk/boost/current_function.hpp | 6 +-----
   1 files changed, 1 insertions(+), 5 deletions(-)

Modified: trunk/boost/current_function.hpp
==============================================================================
--- trunk/boost/current_function.hpp Sun Sep 29 20:35:59 2013 (r86042)
+++ trunk/boost/current_function.hpp 2013-09-29 20:36:13 EDT (Sun, 29 Sep 2013) (r86043)
@@ -28,11 +28,7 @@
 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__
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk