Do not define _SCL_SECURE_NO_WARNINGS or _CRT_SECURE_NO_WARNINGS if already defined (such as on the command line), plus related cleanups.

This commit is contained in:
Beman
2014-12-10 10:26:49 -05:00
parent 66a7a0bfac
commit dcde9463fc
13 changed files with 37 additions and 27 deletions

View File

@ -7,7 +7,14 @@
//--------------------------------------------------------------------------------------//
#define _SCL_SECURE_NO_WARNINGS
#ifndef _SCL_SECURE_NO_WARNINGS
# define _SCL_SECURE_NO_WARNINGS
#endif
#ifndef _CRT_SECURE_NO_WARNINGS
# define _CRT_SECURE_NO_WARNINGS
#endif
#include <boost/endian/conversion.hpp>
#include <boost/endian/buffers.hpp>