mirror of
https://github.com/NixOS/nix
synced 2025-06-30 19:57:59 +02:00
Remove std::list alias
This commit is contained in:
parent
e2422c4582
commit
afcdc7606c
5 changed files with 8 additions and 9 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue