Fix gcc warning: unused function

pull/4478/head
Kim Kulling 2022-04-05 19:04:29 +02:00
parent b8658cefe0
commit fa5a8476ee
1 changed files with 5 additions and 0 deletions

View File

@ -86,12 +86,17 @@ Other:
#if _MSC_VER // "unreferenced function has been removed" (SSE2 detection routine in x64 builds) #if _MSC_VER // "unreferenced function has been removed" (SSE2 detection routine in x64 builds)
#pragma warning(push) #pragma warning(push)
#pragma warning(disable : 4505) #pragma warning(disable : 4505)
#else
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-variable"
#endif #endif
#define STB_IMAGE_STATIC #define STB_IMAGE_STATIC
#define STB_IMAGE_IMPLEMENTATION #define STB_IMAGE_IMPLEMENTATION
#include "stb/stb_image.h" #include "stb/stb_image.h"
#if _MSC_VER #if _MSC_VER
#pragma warning(pop) #pragma warning(pop)
#else
#pragma GCC diagnostic pop
#endif #endif
using namespace Assimp; using namespace Assimp;