Quellcode durchsuchen

Remove dependency to posix-extension function

Kim Kulling vor 4 Jahren
Ursprung
Commit
484ac21ef5
1 geänderte Dateien mit 0 neuen und 4 gelöschten Zeilen
  1. 0 4
      include/assimp/StringComparison.h

+ 0 - 4
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++);