summaryrefslogtreecommitdiff
path: root/src/common/cbasetypes.h
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2016-05-08 17:39:22 +0200
committerHaru <haru@dotalux.com>2016-05-08 19:53:59 +0200
commit578b9d8a266a43372717ded4fddbcdbb58b5c810 (patch)
tree7668bc4437bdf34c2124c74a88215f82201f3d9d /src/common/cbasetypes.h
parent1cca070e1a3b82c33a1aecaa6ec9bfc72516a640 (diff)
downloadhercules-578b9d8a266a43372717ded4fddbcdbb58b5c810.tar.gz
hercules-578b9d8a266a43372717ded4fddbcdbb58b5c810.tar.bz2
hercules-578b9d8a266a43372717ded4fddbcdbb58b5c810.tar.xz
hercules-578b9d8a266a43372717ded4fddbcdbb58b5c810.zip
Removed some legacy checks for MSVC <= 2003
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common/cbasetypes.h')
-rw-r--r--src/common/cbasetypes.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/common/cbasetypes.h b/src/common/cbasetypes.h
index 0e419c013..78e5512ba 100644
--- a/src/common/cbasetypes.h
+++ b/src/common/cbasetypes.h
@@ -252,16 +252,13 @@ typedef uintptr_t uintptr;
#if defined(__BORLANDC__) || _MSC_VER < 1900
#define snprintf _snprintf
#endif
-#if defined(_MSC_VER) && _MSC_VER < 1400
-#define vsnprintf _vsnprintf
-#endif
#else
#define strcmpi strcasecmp
#define stricmp strcasecmp
#define strncmpi strncasecmp
#define strnicmp strncasecmp
#endif
-#if defined(_MSC_VER) && _MSC_VER > 1200
+#if defined(_MSC_VER)
#define strtoull _strtoui64
#define strtoll _strtoi64
#endif