Browse Source

EngineExportScope(){} *can't* be initialized by default, aparantly

AzaezelX 5 năm trước cách đây
mục cha
commit
eaf814f2e3
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Engine/source/console/engineExports.h

+ 1 - 1
Engine/source/console/engineExports.h

@@ -166,7 +166,7 @@ class EngineExportScope : public EngineExport
    private:
    
       /// Constructor for the global scope.
-      EngineExportScope():mExports(NULL){}
+      EngineExportScope(){}
 };