# ammendment to previous: take care for gcc.major > 4

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1059 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
pull/2/head
aramis_acg 2011-07-28 21:53:52 +00:00
parent 4f5b36b850
commit 967e87d625
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ public:
}
// https://sourceforge.net/tracker/?func=detail&atid=1067632&aid=3358562&group_id=226462
#if !defined(__GNUC__) || !defined(__APPLE__) || (__GNUC__ >= 4 && __GNUC_MINOR__ >= 3)
#if !defined(__GNUC__) || !defined(__APPLE__) || __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)
// ------------------------------------------------------------------------------------------------
static void LogWarn (const char* message) {