add missing constructor to ensure RTTI
This commit is contained in:
@@ -147,10 +147,7 @@ void AllocateFromAssimpHeap::operator delete[] ( void* data) {
|
||||
// ------------------------------------------------------------------------------------------------
|
||||
// Importer constructor.
|
||||
Importer::Importer()
|
||||
: pimpl( NULL ) {
|
||||
// allocate the pimpl first
|
||||
pimpl = new ImporterPimpl();
|
||||
|
||||
: pimpl( new ImporterPimpl ) {
|
||||
pimpl->mScene = NULL;
|
||||
pimpl->mErrorString = "";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user