lean cpp library
A lean C++ library providing efficient utility classes for high-performance C++ applications.
stdstd.h
00001 /*****************************************************/
00002 /* lean Dependency Config       (c) Tobias Zirr 2011 */
00003 /*****************************************************/
00004 
00005 #ifndef LEAN_CONFIG_STDSTD
00006 #define LEAN_CONFIG_STDSTD
00007 
00008 // Disable warnings
00009 #define _CRT_SECURE_NO_WARNINGS 1 // Using _standard_ library
00010 #define _SCL_SECURE_NO_WARNINGS 1
00011 
00012 #ifdef _MSC_VER
00013 
00014 #pragma warning(push)
00015 // Some warnings won't go, even with _CRT_SECURE_NO_WARNINGS defined
00016 #pragma warning(disable : 4996)
00017 
00018 #endif
00019 
00020 #endif