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

@ -31,7 +31,7 @@ struct InstructionAttributes
struct TraceOutput
{
u32 address;
u32 address = 0;
std::optional<u32> memory_target = std::nullopt;
std::string instruction;
};