mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-08 23:10:36 +00:00
unintialized variable cleanups
This commit is contained in:
parent
6596865d92
commit
76b33ab57b
2 changed files with 3 additions and 3 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue