ccextractor/src/disable_warnings.h
2014-04-12 12:41:27 +02:00

7 lines
217 B
C

#ifdef _MSC_VER
#include "stdintmsc.h"
// Don't bug me with strcpy() deprecation warnings
#pragma warning(disable : 4996)
// Or incompatible types from char[] to const char * etc
#pragma warning(disable : 4133)
#endif