MSVC: Delete deprecated stuff related to MSVC < 2008

This commit is contained in:
Luis Díaz Más
2018-11-11 10:31:17 +01:00
parent e84b812d8a
commit 8bf9ca8e6d
3 changed files with 1 additions and 30 deletions
+1 -8
View File
@@ -8,13 +8,6 @@
#define _MSC_VER_2010 1600
#define _MSC_VER_2008 1500
#define _MSC_VER_2005 1400
#if _MSC_VER >= _MSC_VER_2005
#define MSDEV_2005 1
#else
#define MSDEV_2003 1
#endif
// Constants required by Microsoft SDKs to define SHGetFolderPathA and others
@@ -31,7 +24,7 @@
#define HAVE_NTOHLL 1
#endif
#if _MSC_VER >= _MSC_VER_2005
#if _MSC_VER >= _MSC_VER_2008
#pragma warning(disable : 4996) // Disable warnings about 'deprecated' standard functions
#pragma warning(disable : 4251) // Disable warnings from std templates about exporting interfaces
#endif