diff options
author | Karel Kočí <cynerd@email.cz> | 2017-09-02 15:34:07 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2017-09-02 15:34:07 +0200 |
commit | 375607d9969896c894fa2642ce4a0b8b519a2adb (patch) | |
tree | cb947a843d85f1cd278da15cff432c849986166c /qtmips_machine/instructions/loadstore.cpp | |
parent | 82884b3ef726889f837542d2b5e98e2cd8246c00 (diff) | |
download | qtmips-375607d9969896c894fa2642ce4a0b8b519a2adb.tar.gz qtmips-375607d9969896c894fa2642ce4a0b8b519a2adb.tar.bz2 qtmips-375607d9969896c894fa2642ce4a0b8b519a2adb.zip |
Use QString and QVector instead of std ones and more
Diffstat (limited to 'qtmips_machine/instructions/loadstore.cpp')
-rw-r--r-- | qtmips_machine/instructions/loadstore.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qtmips_machine/instructions/loadstore.cpp b/qtmips_machine/instructions/loadstore.cpp index c83eae4..27c6402 100644 --- a/qtmips_machine/instructions/loadstore.cpp +++ b/qtmips_machine/instructions/loadstore.cpp @@ -5,8 +5,8 @@ InstructionLoad::InstructionLoad(enum InstructionLoadStoreT type, std::uint8_t r this->type = type; } -std::vector<std::string> InstructionLoad::to_strs() { - std::vector<std::string> str = this->InstructionI::to_strs(); +QVector<QString> InstructionLoad::to_strs() { + QVector<QString> str = this->InstructionI::to_strs(); switch (this->type) { case ILST_B: str[0] = "lb"; @@ -41,8 +41,8 @@ InstructionStore::InstructionStore(enum InstructionLoadStoreT type, std::uint8_t this->type = type; } -std::vector<std::string> InstructionStore::to_strs() { - std::vector<std::string> str = this->InstructionI::to_strs(); +QVector<QString> InstructionStore::to_strs() { + QVector<QString> str = this->InstructionI::to_strs(); switch (this->type) { case ILST_B: str[0] = "sb"; |