Revision: 7535
http://winmerge.svn.sourceforge.net/winmerge/?rev=7535&view=rev
Author: sdottaka
Date: 2011-06-04 07:24:21 +0000 (Sat, 04 Jun 2011)
Log Message:
-----------
Fix the following link error
"LIBC.lib(_wctype.obj) : error LNK2005: _iswspace already defined in UnicodeString.obj"
See the following link:
http://blog.unixwiz.net/2004/11/maddening_vc7_l.html
Modified Paths:
--------------
trunk/Src/Common/UnicodeString.cpp
Modified: trunk/Src/Common/UnicodeString.cpp
===================================================================
--- trunk/Src/Common/UnicodeString.cpp 2011-06-04 07:05:41 UTC (rev 7534)
+++ trunk/Src/Common/UnicodeString.cpp 2011-06-04 07:24:21 UTC (rev 7535)
@@ -26,6 +26,7 @@
// String formatting code originally from Paul Senzee:
// http://www.senzee5.com/2006/05/c-formatting-stdstring.html
+#include <windows.h>
#include <tchar.h>
#include <stdarg.h>
#include "UnicodeString.h"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|