Fix uninitialized variable warnings (C26495)

This commit is contained in:
Pokechu22
2023-02-15 19:18:39 -08:00
parent 089eab96d7
commit 8802f96b7e
30 changed files with 182 additions and 180 deletions

View File

@ -15,10 +15,10 @@ class QTableWidget;
struct Diff
{
u32 addr;
u32 addr = 0;
std::string symbol;
u32 hits;
u32 total_hits;
u32 hits = 0;
u32 total_hits = 0;
bool operator<(const std::string& val) const { return symbol < val; }
};