On Thu, Jun 9, 2011 at 09:31, <s...@apache.org> wrote: > Author: stsp > Date: Thu Jun 9 13:31:11 2011 > New Revision: 1133866 > > URL: http://svn.apache.org/viewvc?rev=1133866&view=rev > Log: > Revert r1133865 because Windows compilers are too stupid to know about > __func__.
You could do something like: #ifdef WINDOWS #define FUNC "" #else #define FUNC __func__ #endif >...