fix warning

This commit is contained in:
Flyinghead 2019-05-21 16:50:38 +02:00
parent 1b132a82ee
commit 3d67d39187
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@
// Compiler Related
#define COMPILER_VC_OR_CLANG_WIN32 ((BUILD_COMPILER == COMPILER_VC) || (BUILD_COMPILER == COMPILER_CLANG) && defined(WIN32))
#define COMPILER_VC_OR_CLANG_WIN32 ((BUILD_COMPILER == COMPILER_VC) || (BUILD_COMPILER == COMPILER_CLANG) && HOST_OS == OS_WINDOWS)
#if BUILD_COMPILER!=COMPILER_VC
#define ATTR_USED __attribute__((used))