diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-02-21 16:32:34 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-02-21 16:32:34 +0100 |
commit | 1ac2664472d0135503e54f0d924a802023855003 (patch) | |
tree | 13f690db4152c971e0fe27ef34bebb796dad0b84 /src/libutil/types.hh | |
parent | fe9afb65bb35737a144acd612170b2e284298a2f (diff) |
Remove std::vector alias
Diffstat (limited to 'src/libutil/types.hh')
-rw-r--r-- | src/libutil/types.hh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libutil/types.hh b/src/libutil/types.hh index 057c9021c..a26c9a966 100644 --- a/src/libutil/types.hh +++ b/src/libutil/types.hh @@ -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> |