X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=blobdiff_plain;f=src%2Fdisassembler%2FInstruction.hxx;fp=src%2Fdisassembler%2FInstruction.hxx;h=0e92dd5b5a4de929a8b36b86fc79134ac3ec9f60;hp=5a74e22afe1bcfaf9779e9311fd74b28b3dad639;hb=be25639ecafa1ec2d37c8e2d6c8225c12ddb59ff;hpb=45f6c89c061ae3e819cd136807c04f997696194e 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;}