1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-14 06:22:42 +01:00

Remove std::list alias

This commit is contained in:
Eelco Dolstra 2022-02-21 16:25:12 +01:00
parent e2422c4582
commit afcdc7606c
5 changed files with 8 additions and 9 deletions

View file

@ -20,7 +20,7 @@ class PathLocks
{
private:
typedef std::pair<int, Path> FDPair;
list<FDPair> fds;
std::list<FDPair> fds;
bool deletePaths;
public: