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/libexpr/get-drvs.hh | |
parent | e2422c45820b3c71665669972939be90248e3ad5 (diff) |
Remove std::list alias
Diffstat (limited to 'src/libexpr/get-drvs.hh')
-rw-r--r-- | src/libexpr/get-drvs.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libexpr/get-drvs.hh b/src/libexpr/get-drvs.hh index 29bb6a660..128354682 100644 --- a/src/libexpr/get-drvs.hh +++ b/src/libexpr/get-drvs.hh @@ -70,9 +70,9 @@ public: #if HAVE_BOEHMGC -typedef list<DrvInfo, traceable_allocator<DrvInfo> > DrvInfos; +typedef std::list<DrvInfo, traceable_allocator<DrvInfo> > DrvInfos; #else -typedef list<DrvInfo> DrvInfos; +typedef std::list<DrvInfo> DrvInfos; #endif |