diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-02-21 16:25:12 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-02-21 16:25:12 +0100 |
commit | afcdc7606cb9c1a1603a3a51b08ac411f82795db (patch) | |
tree | 1c16ae382a7bbd9432c2c445e429cef90f77119d /src/libstore/pathlocks.hh | |
parent | e2422c45820b3c71665669972939be90248e3ad5 (diff) |
Remove std::list alias
Diffstat (limited to 'src/libstore/pathlocks.hh')
-rw-r--r-- | src/libstore/pathlocks.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/pathlocks.hh b/src/libstore/pathlocks.hh index 919c8904c..759b9a584 100644 --- a/src/libstore/pathlocks.hh +++ b/src/libstore/pathlocks.hh @@ -20,7 +20,7 @@ class PathLocks { private: typedef std::pair<int, Path> FDPair; - list<FDPair> fds; + std::list<FDPair> fds; bool deletePaths; public: |