Browse Source

Update D3MFImporter.cpp

Fix order of init list.
Kim Kulling 7 năm trước cách đây
mục cha
commit
375dd4c179
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      code/D3MFImporter.cpp

+ 3 - 3
code/D3MFImporter.cpp

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