From f6ad4628f464bd1974f9a8c7e713e757baea0a94 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 14 Nov 2008 20:31:28 +0000 Subject: [PATCH] Added definition of std::wstring as a work around to a lack of wstring under Cygwin. --- include/osgDB/ConvertUTF | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/osgDB/ConvertUTF b/include/osgDB/ConvertUTF index c40d0a340..294a61070 100644 --- a/include/osgDB/ConvertUTF +++ b/include/osgDB/ConvertUTF @@ -20,6 +20,13 @@ #include #include +#ifdef __CYGWIN__ +namespace std +{ +typedef basic_string wstring; +} +#endif + namespace osgDB {