]> git.tdb.fi Git - builder.git/blobdiff - source/analyzer.h
Remove most container typedefs and refactor others
[builder.git] / source / analyzer.h
index 5464dacf989ac84ecea5be2a0c9353128924ec8f..373150b847690039a77e402a737e5d57c8bdef9f 100644 (file)
@@ -25,12 +25,11 @@ public:
        };
 
 private:
-       typedef std::vector<std::string> TableRow;
-       typedef std::list<TableRow> Table;
+       using TableRow = std::vector<std::string>;
 
        Builder &builder;
        Mode mode;
-       Table table;
+       std::list<TableRow> table;
        unsigned max_depth;
        bool full_paths;
        std::map<const Target *, std::set<Target *> > rdepends;