1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-30 15:48:00 +02:00

Remove std::vector alias

This commit is contained in:
Eelco Dolstra 2022-02-21 16:32:34 +01:00
parent fe9afb65bb
commit 1ac2664472
9 changed files with 21 additions and 22 deletions

View file

@ -11,7 +11,6 @@
namespace nix {
using std::vector;
using std::string;
typedef std::list<string> Strings;
@ -25,7 +24,7 @@ typedef std::string_view PathView;
typedef std::list<Path> Paths;
typedef std::set<Path> PathSet;
typedef vector<std::pair<string, string>> Headers;
typedef std::vector<std::pair<string, string>> Headers;
/* Helper class to run code at startup. */
template<typename T>