From 9a1f6420b87fd8d866b46a76feaad89820a25998 Mon Sep 17 00:00:00 2001 From: stuxnot <41650734+Stuxnot@users.noreply.github.com> Date: Wed, 18 Oct 2023 18:47:11 +0200 Subject: [PATCH] clang-format --- src/nyxstone.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/nyxstone.cpp b/src/nyxstone.cpp index d160734..54d1687 100644 --- a/src/nyxstone.cpp +++ b/src/nyxstone.cpp @@ -475,9 +475,7 @@ void Nyxstone::disassemble_impl( } bool Nyxstone::Instruction::operator==(const Instruction& other) const { - return address == other.address && - assembly == other.assembly && - bytes == other.bytes; + return address == other.address && assembly == other.assembly && bytes == other.bytes; } /// Detects all ARM Thumb architectures. LLVM doesn't seem to have a short way to check this.