From 484ac21ef5e772b96186f3b57d19cacf19d3ebba Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Thu, 14 Jan 2021 11:53:25 +0100 Subject: [PATCH] Remove dependency to posix-extension function --- include/assimp/StringComparison.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/assimp/StringComparison.h b/include/assimp/StringComparison.h index 255123c0e..21007bf68 100644 --- a/include/assimp/StringComparison.h +++ b/include/assimp/StringComparison.h @@ -145,11 +145,7 @@ int ASSIMP_stricmp(const char *s1, const char *s2) { #if (defined _MSC_VER) return ::_stricmp(s1, s2); -#elif defined(__GNUC__) - - return ::strcasecmp(s1, s2); #else - char c1, c2; do { c1 = tolower(*s1++);