unintialized variable cleanups

This commit is contained in:
AzaezelX 2025-05-26 15:16:48 -05:00
parent 6596865d92
commit 76b33ab57b
2 changed files with 3 additions and 3 deletions

View file

@ -12,7 +12,7 @@ namespace Con
String error; String error;
public: public:
EvalResult() {} EvalResult() { valid = false; error = ""; }
EvalResult(ConsoleValue pValue) EvalResult(ConsoleValue pValue)
{ {

View file

@ -179,8 +179,8 @@ class HashTable
public: public:
struct Pair struct Pair
{ {
Key key; Key key{};
Value value; Value value{};
Pair() {} Pair() {}
Pair(Key k,Value v) Pair(Key k,Value v)
: key(k), : key(k),