mirror of
https://github.com/NixOS/nix
synced 2025-06-30 15:48:00 +02:00
Remove std::vector alias
This commit is contained in:
parent
fe9afb65bb
commit
1ac2664472
9 changed files with 21 additions and 22 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue