From 7fa050ddefca5373b09bdbcbb3aa0902eacd5d2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Sun, 17 Dec 2017 00:15:38 +0100 Subject: Revert "Suppress some warning" This reverts commit 5bf637a429bbcf09092b8d189010c50d61c3562f. --- qtmips_machine/instruction.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'qtmips_machine/instruction.cpp') diff --git a/qtmips_machine/instruction.cpp b/qtmips_machine/instruction.cpp index 4137fdd..b6abebc 100644 --- a/qtmips_machine/instruction.cpp +++ b/qtmips_machine/instruction.cpp @@ -67,7 +67,9 @@ Instruction::Instruction(std::uint8_t opcode, std::uint32_t address) { this->dt |= address; } -Instruction::Instruction(const Instruction &i) : Instruction(i.data()) { } +Instruction::Instruction(const Instruction &i) { + this->dt = i.data(); +} QString Instruction::to_str() { if (this->opcode() >= sizeof(instruction_map)) -- cgit v1.2.3