Merge pull request #350 from Azaezel/alpha40_EngineExportFix

EngineExportScope(){} *can't* be initialized by default, aparantly
This commit is contained in:
Brian Roberts 2020-10-05 13:45:07 -05:00 committed by GitHub
commit 04795cefbb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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