mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-12 15:14:35 +00:00
uninitialized variables-console
This commit is contained in:
parent
e9415a0994
commit
2c1508c169
23 changed files with 66 additions and 11 deletions
|
|
@ -123,6 +123,7 @@ class EngineExport : public StaticEngineObject
|
|||
: mExportName( "" ),
|
||||
mExportKind( EngineExportKindScope ),
|
||||
mExportScope( NULL ),
|
||||
mDocString(""),
|
||||
mNextExport( NULL ) {}
|
||||
};
|
||||
|
||||
|
|
@ -165,7 +166,7 @@ class EngineExportScope : public EngineExport
|
|||
private:
|
||||
|
||||
/// Constructor for the global scope.
|
||||
EngineExportScope() {}
|
||||
EngineExportScope():mExports(NULL){}
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue