mirror of
https://github.com/NixOS/nix.git
synced 2025-11-18 00:12:43 +01:00
Remove std::list alias
This commit is contained in:
parent
e2422c4582
commit
afcdc7606c
5 changed files with 8 additions and 9 deletions
|
|
@ -25,7 +25,7 @@ private:
|
|||
std::unique_ptr<Regex> regex;
|
||||
};
|
||||
|
||||
typedef list<DrvName> DrvNames;
|
||||
typedef std::list<DrvName> DrvNames;
|
||||
|
||||
std::string_view nextComponent(std::string_view::const_iterator & p,
|
||||
const std::string_view::const_iterator end);
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ class PathLocks
|
|||
{
|
||||
private:
|
||||
typedef std::pair<int, Path> FDPair;
|
||||
list<FDPair> fds;
|
||||
std::list<FDPair> fds;
|
||||
bool deletePaths;
|
||||
|
||||
public:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue