Added definition of std::wstring as a work around to a lack of wstring under Cygwin.

This commit is contained in:
Robert Osfield 2008-11-14 20:31:28 +00:00
parent 453bbc8608
commit f6ad4628f4

View File

@ -20,6 +20,13 @@
#include <string>
#include <string.h>
#ifdef __CYGWIN__
namespace std
{
typedef basic_string<wchar_t> wstring;
}
#endif
namespace osgDB
{