X-Git-Url: https://git.siccegge.de//index.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fdisassembler%2FInstruction.hxx;h=0e92dd5b5a4de929a8b36b86fc79134ac3ec9f60;hb=be25639ecafa1ec2d37c8e2d6c8225c12ddb59ff;hp=5a74e22afe1bcfaf9779e9311fd74b28b3dad639;hpb=d1b23c7274d6430ccc70bf2baf616437db9f5706;p=frida%2Ffrida.git diff --git a/src/disassembler/Instruction.hxx b/src/disassembler/Instruction.hxx index 5a74e22..0e92dd5 100644 --- a/src/disassembler/Instruction.hxx +++ b/src/disassembler/Instruction.hxx @@ -9,7 +9,9 @@ class Comment; class Instruction { public: - Instruction(uint64_t address, const std::string& text, const std::vector& bytes, const std::string& reference) + Instruction(uint64_t address, const std::string& text, + const std::vector& bytes, + const std::string& reference) : address(address), text(text), bytes(bytes), reference(reference) {} uint64_t getAddress() const {return address;} const std::string& getText() const {return text;}