]> git.tdb.fi Git - builder.git/blobdiff - source/analyzer.h
Convert all list containers to vectors
[builder.git] / source / analyzer.h
index 373150b847690039a77e402a737e5d57c8bdef9f..4c9e14641a2fc02af7be622836997804d1c0f3fe 100644 (file)
@@ -1,7 +1,6 @@
 #ifndef ANALYZER_H_
 #define ANALYZER_H_
 
-#include <list>
 #include <map>
 #include <set>
 #include <string>
@@ -29,7 +28,7 @@ private:
 
        Builder &builder;
        Mode mode;
-       std::list<TableRow> table;
+       std::vector<TableRow> table;
        unsigned max_depth;
        bool full_paths;
        std::map<const Target *, std::set<Target *> > rdepends;