Merge pull request #812 from tgoulart/fix_switch_warning

Fix warning when compiling using -Wswitch-enum
pull/814/head
Kim Kulling 2016-03-02 21:16:42 +01:00
commit e7c3a733b6
1 changed files with 3 additions and 0 deletions

View File

@ -177,6 +177,9 @@ struct aiMetadata
case AI_AIVECTOR3D:
delete static_cast<aiVector3D*>(data);
break;
#ifndef SWIG
case FORCE_32BIT:
#endif
default:
assert(false);
break;