- FBX: silence some warnings produced by clang about missing switch cases. Add TokenType_BINARY_DATA to TokenTypeString() function.

This commit is contained in:
Alexander Gessler
2013-04-08 19:45:09 +02:00
parent 47b2832dd8
commit 5fe03f692e
2 changed files with 10 additions and 0 deletions

View File

@@ -72,6 +72,9 @@ const char* TokenTypeString(TokenType t)
case TokenType_KEY:
return "TOK_KEY";
case TokenType_BINARY_DATA:
return "TOK_BINARY_DATA";
}
ai_assert(false);