From eaf814f2e3c469c4277859b964537f1faba89888 Mon Sep 17 00:00:00 2001 From: AzaezelX Date: Mon, 5 Oct 2020 13:44:08 -0500 Subject: [PATCH] EngineExportScope(){} *can't* be initialized by default, aparantly --- Engine/source/console/engineExports.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/source/console/engineExports.h b/Engine/source/console/engineExports.h index 1303315f8..fba5943d3 100644 --- a/Engine/source/console/engineExports.h +++ b/Engine/source/console/engineExports.h @@ -166,7 +166,7 @@ class EngineExportScope : public EngineExport private: /// Constructor for the global scope. - EngineExportScope():mExports(NULL){} + EngineExportScope(){} };