mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-21 20:35:35 +00:00
unintialized variable cleanups
This commit is contained in:
parent
6596865d92
commit
76b33ab57b
2 changed files with 3 additions and 3 deletions
|
|
@ -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