]> git.tdb.fi Git - builder.git/blobdiff - source/toolchain.h
Convert all list containers to vectors
[builder.git] / source / toolchain.h
index a70cdb7308557f5762ce9d45a7bf3bb188be1f03..ea452408cd4c6c25ba900a4d662ccc9847ec8f85 100644 (file)
@@ -1,9 +1,9 @@
 #ifndef TOOLCHAIN_H_
 #define TOOLCHAIN_H_
 
-#include <list>
 #include <map>
 #include <string>
+#include <vector>
 
 class Tool;
 
@@ -14,7 +14,7 @@ class Toolchain
 {
 private:
        std::map<std::string, Tool *> tools;
-       std::list<Toolchain *> chains;
+       std::vector<Toolchain *> chains;
 
 public:
        ~Toolchain();