Browse Source

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

AzaezelX 5 years ago
parent
commit
eaf814f2e3
1 changed files with 1 additions and 1 deletions
  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(){}
 };