
22 Jun
2006
22 Jun
'06
10:54 a.m.
Digital Mars supports __FUNCTION__, __func__ and __PRETTY_FUNCTION__. However the current_function.hpp settings result in "(unknown)" to be used all the time (as __STDC_VERSION__ is hardcoded to 19990L). The Boost code may be appended with ... #elif (defined __DMC__) // since 8.10 # define BOOST_CURRENT_FUNCTION __PRETTY_FUNCTION__ ... The first release supporting __PRETTY_FUNCTION__ was 8.10, at some time before 2002. /Pavel