Update D3MFImporter.cpp

Fix order of init list.
This commit is contained in:
Kim Kulling
2018-02-23 20:34:34 +01:00
committed by GitHub
parent d00c4a54e6
commit 375dd4c179

View File

@@ -71,9 +71,9 @@ namespace D3MF {
class XmlSerializer {
public:
XmlSerializer(XmlReader* xmlReader)
: xmlReader(xmlReader)
, mMeshes()
, mMaterials() {
: mMeshes()
, mMaterials()
, xmlReader(xmlReader){
// empty
}