소스 검색

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(){}
 };