Details
-
Improvement
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
0.10.0
-
None
-
None
-
MS Windows 7 (32 bit), MS Visaul Studio C++ 2008
Description
Compilers show warning: apache-log4cxx-0.10.0\src\main\include\log4cxx\spi\configurator.h(57) : warning C4231: nonstandard extension used : 'extern' before template explicit instantiation
Can we use the same workaround as in "apache-log4cxx-0.10.0\src\main\include\log4cxx\log4cxx.h" ?
#if defined(_MSC_VER)
#pragma warning ( push )
#pragma warning ( disable: 4231 )
#endif
....
#if defined(_MSC_VER)
#pragma warning (pop)
#endif