]> git.tdb.fi Git - builder.git/blobdiff - source/buildinfo.h
Convert all list containers to vectors
[builder.git] / source / buildinfo.h
index f84315c74369b7b73f6f4e839ff0a8701193627f..203ba5fe5bfbc844373f82b5d89c3ed02a16d725 100644 (file)
@@ -1,8 +1,8 @@
 #ifndef BUILDINFO_H_
 #define BUILDINFO_H_
 
-#include <list>
 #include <string>
+#include <vector>
 #include <msp/datafile/objectloader.h>
 #include <msp/fs/path.h>
 
@@ -91,14 +91,14 @@ public:
 
        Tracked<Msp::FS::Path> sysroot;
        std::map<std::string, std::string> defines;
-       std::list<Msp::FS::Path> incpath;
-       std::list<Msp::FS::Path> local_incpath;
-       std::list<Msp::FS::Path> libpath;
-       std::list<std::string> libs;
+       std::vector<Msp::FS::Path> incpath;
+       std::vector<Msp::FS::Path> local_incpath;
+       std::vector<Msp::FS::Path> libpath;
+       std::vector<std::string> libs;
        Tracked<LibraryMode> libmode;
        Tracked<RuntimePathMode> rpath_mode;
        std::map<std::string, LibraryMode> libmodes;
-       std::list<std::string> keep_symbols;
+       std::vector<std::string> keep_symbols;
        std::map<std::string, LanguageStandard> standards;
        Tracked<bool> threads;
        Tracked<bool> debug;