summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorblacksirius <blacksirius@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-06-03 16:07:26 +0000
committerblacksirius <blacksirius@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-06-03 16:07:26 +0000
commit2fae6b0ebfb77c78b76dd48e29ece269127c87ae (patch)
treeabb3295054c13b9a8d59619f1c39b4e7669db4ce /src/common
parent77432c2e8406cef71baf73c1374b52be883f1dcc (diff)
downloadhercules-2fae6b0ebfb77c78b76dd48e29ece269127c87ae.tar.gz
hercules-2fae6b0ebfb77c78b76dd48e29ece269127c87ae.tar.bz2
hercules-2fae6b0ebfb77c78b76dd48e29ece269127c87ae.tar.xz
hercules-2fae6b0ebfb77c78b76dd48e29ece269127c87ae.zip
fixed portability issue. (As long as we support other compilers than MSC/ICC we have to check explicitly for compiler and not only on Platform ... )
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16218 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common')
-rw-r--r--src/common/cbasetypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/cbasetypes.h b/src/common/cbasetypes.h
index f36c7abf4..5ed4a3974 100644
--- a/src/common/cbasetypes.h
+++ b/src/common/cbasetypes.h
@@ -219,7 +219,7 @@ typedef uintptr_t uintptr;
#endif
// keyword replacement
-#ifdef _WIN32
+#ifdef _MSC_VER
// For MSVC (windows)
#define inline __inline
#define forceinline __forceinline