Correcting a bug where the constructor & destructor of aiScene were not exported correctly in the assim library

This commit is contained in:
Léo Terziman
2013-09-18 15:34:54 +02:00
parent df700b998f
commit 5e603d9ed8
2 changed files with 4 additions and 4 deletions

View File

@@ -69,7 +69,7 @@ ASSIMP_API unsigned int aiGetVersionRevision ()
}
// ------------------------------------------------------------------------------------------------
aiScene::aiScene()
ASSIMP_API aiScene::aiScene()
: mFlags()
, mRootNode()
, mNumMeshes()
@@ -89,7 +89,7 @@ aiScene::aiScene()
}
// ------------------------------------------------------------------------------------------------
aiScene::~aiScene()
ASSIMP_API aiScene::~aiScene()
{
// delete all sub-objects recursively
delete mRootNode;