ns32000dasm.h: Fix clang error: extra qualification on member 'displacement_string'

This commit is contained in:
AJR 2022-01-25 20:43:14 -05:00
parent f150a69451
commit a5dbadc2e5

View File

@ -43,7 +43,7 @@ protected:
};
s32 displacement(offs_t pc, data_buffer const &opcodes, unsigned &bytes);
std::string ns32000_disassembler::displacement_string(offs_t pc, data_buffer const &opcodes, unsigned &bytes, std::string const zero = "");
std::string displacement_string(offs_t pc, data_buffer const &opcodes, unsigned &bytes, std::string const zero = "");
void decode(addr_mode *mode, offs_t pc, data_buffer const &opcodes, unsigned &bytes);
std::string reglist(u8 imm);
};