1
0
Fork 0

Stop silencing deprecation warnings in MSVC

Warning C4996 informs users about deprecation, using either MSVC
__declspec(deprecated) modifier, or the C++14 [[deprecated]]
attribute.
This commit is contained in:
Patryk Obara 2019-12-29 15:55:41 +01:00 committed by Patryk Obara
parent aff02450d1
commit bbf4e80ac1

View file

@ -65,7 +65,3 @@
#define INLINE __forceinline
#define DB_FASTCALL __fastcall
#if defined(_MSC_VER) && (_MSC_VER >= 1400)
#pragma warning(disable : 4996)
#endif