[geos-commits] r2183 - in trunk/source: . io
svn_geos at osgeo.org
svn_geos at osgeo.org
Tue Sep 16 16:05:55 EDT 2008
Author: mloskot
Date: 2008-09-16 16:05:55 -0400 (Tue, 16 Sep 2008)
New Revision: 2183
Modified:
trunk/source/Makefile.vc
trunk/source/io/CLocalizer.cpp
Log:
Fixed undeclared std::locale in CLocalizer when building using Visual C++ (Ticket #201)
Modified: trunk/source/Makefile.vc
===================================================================
--- trunk/source/Makefile.vc 2008-08-31 20:28:30 UTC (rev 2182)
+++ trunk/source/Makefile.vc 2008-09-16 20:05:55 UTC (rev 2183)
@@ -175,6 +175,7 @@
index\sweepline\SweepLineInterval.obj \
io\ByteOrderDataInStream.obj \
io\ByteOrderValues.obj \
+ io\CLocalizer.obj \
io\ParseException.obj \
io\StringTokenizer.obj \
io\Unload.obj \
Modified: trunk/source/io/CLocalizer.cpp
===================================================================
--- trunk/source/io/CLocalizer.cpp 2008-08-31 20:28:30 UTC (rev 2182)
+++ trunk/source/io/CLocalizer.cpp 2008-09-16 20:05:55 UTC (rev 2183)
@@ -1,6 +1,7 @@
#include <geos/io/CLocalizer.h>
#include <string>
+#include <clocale>
using namespace std;
More information about the geos-commits
mailing list