mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Fix all uninitialized variable warnings (C26495)
This commit is contained in:
@ -163,8 +163,8 @@ protected:
|
||||
|
||||
std::unique_ptr<X64CodeBlock> emitter;
|
||||
std::unique_ptr<disassembler> disasm;
|
||||
u8* code_buffer;
|
||||
u8* code_buffer_end;
|
||||
u8* code_buffer = nullptr;
|
||||
u8* code_buffer_end = nullptr;
|
||||
};
|
||||
|
||||
#define TEST_INSTR_NO_OPERANDS(Name, ExpectedDisasm) \
|
||||
|
Reference in New Issue
Block a user