mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-10 22:49:00 +01:00
Merge pull request #3104 from Tilka/fix_warnings
Fix -Wuninitialized warnings
This commit is contained in:
commit
6a27f1bbf6
@ -72,8 +72,8 @@ public:
|
|||||||
K key;
|
K key;
|
||||||
|
|
||||||
V *value = nullptr;
|
V *value = nullptr;
|
||||||
u32 value_size;
|
u32 value_size = 0;
|
||||||
u32 entry_number;
|
u32 entry_number = 0;
|
||||||
|
|
||||||
std::fstream::pos_type last_pos = m_file.tellg();
|
std::fstream::pos_type last_pos = m_file.tellg();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user