Update D3MFImporter.cpp

Fix order of init list.
pull/1793/head
Kim Kulling 2018-02-23 20:34:34 +01:00 committed by GitHub
parent d00c4a54e6
commit 375dd4c179
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

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