carnold 2005/01/08 16:16:01
Modified: src simpledateformat.cpp
Log:
Facets in VS.NET 2003 (maybe 2001) no longer support old VS6 form
Revision Changes Path
1.9 +1 -1 logging-log4cxx/src/simpledateformat.cpp
Index: simpledateformat.cpp
===================================================================
RCS file: /home/cvs/logging-log4cxx/src/simpledateformat.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- simpledateformat.cpp 26 Dec 2004 07:31:53 -0000 1.8
+++ simpledateformat.cpp 9 Jan 2005 00:16:01 -0000 1.9
@@ -42,7 +42,7 @@
std::basic_ostream<wchar_t>& buffer,
const tm* time,
const char spec) {
-#if defined(_MSC_VER)
+#if _MSC_VER < 1300
_USE(locale, TimePutFacet).put(buffer,
buffer, time, spec);
#else