소스 검색

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://svn.code.sf.net/p/rathena/svn/trunk@16218 54d463be-8e91-2dee-dedb-b68131a5f0ec
blacksirius 13 년 전
부모
커밋
1b2e097aca
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/common/cbasetypes.h

+ 1 - 1
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