Merge pull request #181 from eserdem/master

Fixed _CRT_SECURE_NO_WARNINGS macro redefinition warning
This commit is contained in:
Lee Thomason 2014-04-17 10:07:50 -07:00
commit 500fb6aa21
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
#if defined( _MSC_VER ) #if defined( _MSC_VER )
#if !defined( _CRT_SECURE_NO_WARNINGS )
#define _CRT_SECURE_NO_WARNINGS // This test file is not intended to be secure. #define _CRT_SECURE_NO_WARNINGS // This test file is not intended to be secure.
#endif #endif
#endif
#include "tinyxml2.h" #include "tinyxml2.h"
#include <cstdlib> #include <cstdlib>