diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-02-21 16:25:12 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-02-21 16:25:12 +0100 |
commit | afcdc7606cb9c1a1603a3a51b08ac411f82795db (patch) | |
tree | 1c16ae382a7bbd9432c2c445e429cef90f77119d /src/libutil/types.hh | |
parent | e2422c45820b3c71665669972939be90248e3ad5 (diff) |
Remove std::list alias
Diffstat (limited to 'src/libutil/types.hh')
-rw-r--r-- | src/libutil/types.hh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libutil/types.hh b/src/libutil/types.hh index e3aca20c9..130c04451 100644 --- a/src/libutil/types.hh +++ b/src/libutil/types.hh @@ -11,12 +11,11 @@ namespace nix { -using std::list; using std::set; using std::vector; using std::string; -typedef list<string> Strings; +typedef std::list<string> Strings; typedef set<string> StringSet; typedef std::map<string, string> StringMap; @@ -24,7 +23,7 @@ typedef std::map<string, string> StringMap; typedef string Path; typedef std::string_view PathView; -typedef list<Path> Paths; +typedef std::list<Path> Paths; typedef set<Path> PathSet; typedef vector<std::pair<string, string>> Headers; |