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

Remove std::set alias

This commit is contained in:
Eelco Dolstra 2022-02-21 16:28:23 +01:00
parent afcdc7606c
commit fe9afb65bb
11 changed files with 15 additions and 16 deletions

View file

@ -11,12 +11,11 @@
namespace nix {
using std::set;
using std::vector;
using std::string;
typedef std::list<string> Strings;
typedef set<string> StringSet;
typedef std::set<string> StringSet;
typedef std::map<string, string> StringMap;
/* Paths are just strings. */
@ -24,7 +23,7 @@ typedef std::map<string, string> StringMap;
typedef string Path;
typedef std::string_view PathView;
typedef std::list<Path> Paths;
typedef set<Path> PathSet;
typedef std::set<Path> PathSet;
typedef vector<std::pair<string, string>> Headers;