remove initialization warnings
authorwise86Android <wise86android@gmail.com>
Sat, 16 Jan 2016 13:22:41 +0000 (14:22 +0100)
committerwise86Android <wise86android@gmail.com>
Sat, 16 Jan 2016 22:26:46 +0000 (23:26 +0100)
code/StepExporter.cpp

index 4cc515c..90391ae 100644 (file)
@@ -137,10 +137,12 @@ namespace {
 
 // ------------------------------------------------------------------------------------------------
 // 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")
-{
-    CollectTrafos(pScene->mRootNode, trafos);
-    CollectMeshes(pScene->mRootNode, meshes);
+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);
+       CollectMeshes(pScene->mRootNode, meshes);
 
     // make sure that all formatting happens using the standard, C locale and not the user's current locale
     mOutput.imbue( std::locale("C") );