Removed unnecessary define in FileUtils

The define of _WIN32_WINNT was added to handle an error case from MinGW
,as described in commit 712ca43219

This was later giving warnings and thus undefined for MinGW by commit
3bf6fb1778

Since the two operations cancel each other out, they should be removed.
This commit is contained in:
Björn Blissing 2017-11-30 12:47:57 +01:00
parent a16702627a
commit e8f7eeb5dc

View File

@ -19,9 +19,6 @@
#include <osgDB/FileUtils>
#ifdef WIN32
#if !defined(__MINGW32__)
#define _WIN32_WINNT 0x0500
#endif
#include <windows.h>
#endif