]> git.tdb.fi Git - builder.git/blobdiff - source/cache.h
Convert all list containers to vectors
[builder.git] / source / cache.h
index cf7253f717586982f98699d15485dd54d4272766..f3a2c13cb003216b92cd500c5096aa2ed4d14829 100644 (file)
@@ -1,8 +1,8 @@
 #ifndef CACHE_H_
 #define CACHE_H_
 
-#include <list>
 #include <map>
+#include <vector>
 #include <msp/fs/path.h>
 #include <msp/time/timestamp.h>
 
@@ -20,7 +20,7 @@ unprintable characters or nuls.
 class Cache
 {
 public:
-       using Values = std::list<std::string>;
+       using Values = std::vector<std::string>;
 private:
        using Key = std::pair<std::string, std::string>;