remove initialization warnings
parent
8c13c8a558
commit
01a5035920
|
@ -137,10 +137,12 @@ 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):
|
||||||
CollectTrafos(pScene->mRootNode, trafos);
|
mProperties(pProperties),mIOSystem(pIOSystem),mFile(file), mPath(path),
|
||||||
CollectMeshes(pScene->mRootNode, meshes);
|
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
|
// make sure that all formatting happens using the standard, C locale and not the user's current locale
|
||||||
mOutput.imbue( std::locale("C") );
|
mOutput.imbue( std::locale("C") );
|
||||||
|
|
Loading…
Reference in New Issue