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 | |
parent | e2422c45820b3c71665669972939be90248e3ad5 (diff) |
Remove std::list alias
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/names.hh | 2 | ||||
-rw-r--r-- | src/libstore/pathlocks.hh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/names.hh b/src/libstore/names.hh index 6f01fe2a1..ecbad10b3 100644 --- a/src/libstore/names.hh +++ b/src/libstore/names.hh @@ -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); 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: |