remove initialization warnings

pull/753/head
wise86Android 2016-01-16 14:22:41 +01:00
parent 8c13c8a558
commit 01a5035920
1 changed files with 6 additions and 4 deletions

View File

@ -137,8 +137,10 @@ namespace {
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
// Constructor for a specific scene to export // Constructor for a specific scene to export
StepExporter::StepExporter(const aiScene* pScene, IOSystem* pIOSystem, const std::string& path, const std::string& file, const ExportProperties* pProperties) : mProperties(pProperties), mIOSystem(pIOSystem), mFile(file), mPath(path), mScene(pScene), endstr(";\n") StepExporter::StepExporter(const aiScene* pScene, IOSystem* pIOSystem, const std::string& path,
{ const std::string& file, const ExportProperties* pProperties):
mProperties(pProperties),mIOSystem(pIOSystem),mFile(file), mPath(path),
mScene(pScene), endstr(";\n") {
CollectTrafos(pScene->mRootNode, trafos); CollectTrafos(pScene->mRootNode, trafos);
CollectMeshes(pScene->mRootNode, meshes); CollectMeshes(pScene->mRootNode, meshes);