FIx build

pull/1418/head
Kim Kulling 2017-08-31 11:53:00 +02:00
parent 11f70e2140
commit 82f0dae835
1 changed files with 2 additions and 2 deletions

View File

@ -49,9 +49,9 @@ using namespace Assimp;
class utQ3DImportExport : public AbstractImportExportBase {
public:
bool importerTest() override {
virtual bool importerTest() {
Assimp::Importer importer;
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/Q3D/earth.q3o", 0);
const aiScene *scene = importer.ReadFile( ASSIMP_TEST_MODELS_DIR "/Q3D/earth.q3o", 0 );
return nullptr != scene;
}
};