mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
unintialized variable cleanups
This commit is contained in:
parent
6596865d92
commit
76b33ab57b
|
|
@ -12,7 +12,7 @@ namespace Con
|
|||
String error;
|
||||
|
||||
public:
|
||||
EvalResult() {}
|
||||
EvalResult() { valid = false; error = ""; }
|
||||
|
||||
EvalResult(ConsoleValue pValue)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -179,8 +179,8 @@ class HashTable
|
|||
public:
|
||||
struct Pair
|
||||
{
|
||||
Key key;
|
||||
Value value;
|
||||
Key key{};
|
||||
Value value{};
|
||||
Pair() {}
|
||||
Pair(Key k,Value v)
|
||||
: key(k),
|
||||
|
|
|
|||
Loading…
Reference in a new issue