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:
parent
afcdc7606c
commit
fe9afb65bb
11 changed files with 15 additions and 16 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue