Update SMDLoader.cpp

GCC compilation on windows was failing. Better to check for Visual c++ than Win32.
pull/2843/head
Mateusz Paluch 2019-12-22 09:57:02 +01:00 committed by GitHub
parent 66750588cf
commit ae92a34d91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// internal headers
#include "SMDLoader.h"
#ifndef _WIN32
#ifndef _MSC_VER
#define strtok_s strtok_r
#endif