Added definition of std::wstring as a work around to a lack of wstring under Cygwin.
This commit is contained in:
parent
453bbc8608
commit
f6ad4628f4
@ -20,6 +20,13 @@
|
||||
#include <string>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef __CYGWIN__
|
||||
namespace std
|
||||
{
|
||||
typedef basic_string<wchar_t> wstring;
|
||||
}
|
||||
#endif
|
||||
|
||||
namespace osgDB
|
||||
{
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user