Skip to content

Commit

Permalink
Remove extraneous namespace qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
hainest committed Dec 27, 2023
1 parent e4ddf90 commit cfca6ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion instructionAPI/src/x86/decoder.C
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ namespace Dyninst { namespace InstructionAPI {

void x86_decoder::decode_reg(Instruction const* insn, cs_x86_op const& operand) {
auto const isCFT = is_cft(insn->getCategory());
auto regAST = makeRegisterExpression(di::x86::translate_register(operand.reg, mode));
auto regAST = makeRegisterExpression(x86::translate_register(operand.reg, mode));

if(isCFT) {
auto const isCall = is_call(insn->getCategory());
Expand Down

0 comments on commit cfca6ee

Please sign in to comment.