/*!
	@file scolMSC.h
	@brief Microsoft compiler specific options
*/

// LICENCE

#ifndef __SCOL_MSC_H__
#define __SCOL_MSC_H__

#if SCOL_COMPILER_VERSION >= 1400
#	ifndef _CRT_SECURE_NO_DEPRECATE
#		define _CRT_SECURE_NO_DEPRECATE
#	endif
#	ifndef _CRT_NONSTDC_NO_DEPRECATE
#		define _CRT_NONSTDC_NO_DEPRECATE
#	endif
#endif

// Disabling low level warnings.
//#pragma warning (disable : 4190)

#endif
