Explorar o código

Merge pull request #350 from Azaezel/alpha40_EngineExportFix

      EngineExportScope(){} *can't* be initialized by default, aparantly
Brian Roberts %!s(int64=5) %!d(string=hai) anos
pai
achega
04795cefbb
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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(){}
 };