From 375607d9969896c894fa2642ce4a0b8b519a2adb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Sat, 2 Sep 2017 15:34:07 +0200 Subject: Use QString and QVector instead of std ones and more --- qtmips_machine/instructions/loadstore.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'qtmips_machine/instructions/loadstore.h') diff --git a/qtmips_machine/instructions/loadstore.h b/qtmips_machine/instructions/loadstore.h index 9741bd7..6f028fd 100644 --- a/qtmips_machine/instructions/loadstore.h +++ b/qtmips_machine/instructions/loadstore.h @@ -16,7 +16,7 @@ enum InstructionLoadStoreT { class InstructionLoad : public InstructionI { public: InstructionLoad(enum InstructionLoadStoreT type, std::uint8_t rs, std::uint8_t rt, std::uint16_t offset); - std::vector to_strs(); + QVector to_strs(); private: enum InstructionLoadStoreT type; }; @@ -24,7 +24,7 @@ private: class InstructionStore : public InstructionI { public: InstructionStore(enum InstructionLoadStoreT type, std::uint8_t rs, std::uint8_t rt, std::uint16_t offset); - std::vector to_strs(); + QVector to_strs(); private: enum InstructionLoadStoreT type; }; -- cgit v1.2.3