]> git.siccegge.de Git - frida/frida.git/blobdiff - src/core/BasicBlock.hxx
Change from list to vector
[frida/frida.git] / src / core / BasicBlock.hxx
index 3f877879c95942f6defc15111a69938b02948969..918f2730f9c2c6b3c27966803440b70e32bee4bd 100644 (file)
@@ -4,7 +4,7 @@
 #include <cassert>
 #include <string>
 #include <sstream>
-#include <list>
+#include <vector>
 
 class Instruction;
 class Disassembler;
@@ -36,7 +36,7 @@ public:
                return s.str();
        }
 
-       std::list<Instruction> getInstructions() const;
+       std::vector<Instruction> getInstructions() const;
        void serialize(QXmlStreamWriter& stream);
        static BasicBlock* deserialize(QXmlStreamReader& stream, InformationManager* manager);