Преглед изворни кода

Merge pull request #350 from Azaezel/alpha40_EngineExportFix

      EngineExportScope(){} *can't* be initialized by default, aparantly
Brian Roberts пре 5 година
родитељ
комит
04795cefbb
1 измењених фајлова са 1 додато и 1 уклоњено
  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(){}
 };