From ce6e9c669869c1b83936d57f78f94cc342b97c11 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 22 Jun 2006 12:47:19 +0000 Subject: [PATCH] Digital Mars support (Pavel Vozenilek) [SVN r34373] --- include/boost/current_function.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/boost/current_function.hpp b/include/boost/current_function.hpp index 40e3abd..aa5756e 100644 --- a/include/boost/current_function.hpp +++ b/include/boost/current_function.hpp @@ -32,6 +32,10 @@ inline void current_function_helper() # define BOOST_CURRENT_FUNCTION __PRETTY_FUNCTION__ +#elif defined(__DMC__) && (__DMC__ >= 0x810) + +# define BOOST_CURRENT_FUNCTION __PRETTY_FUNCTION__ + #elif defined(__FUNCSIG__) # define BOOST_CURRENT_FUNCTION __FUNCSIG__