aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2022-02-21 16:25:12 +0100
committerEelco Dolstra <edolstra@gmail.com>2022-02-21 16:25:12 +0100
commitafcdc7606cb9c1a1603a3a51b08ac411f82795db (patch)
tree1c16ae382a7bbd9432c2c445e429cef90f77119d /src/libexpr
parente2422c45820b3c71665669972939be90248e3ad5 (diff)
Remove std::list alias
Diffstat (limited to 'src/libexpr')
-rw-r--r--src/libexpr/get-drvs.hh4
-rw-r--r--src/libexpr/primops.cc4
2 files changed, 4 insertions, 4 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
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc
index defb861e6..6f79fc49d 100644
--- a/src/libexpr/primops.cc
+++ b/src/libexpr/primops.cc
@@ -574,9 +574,9 @@ struct CompareValues
#if HAVE_BOEHMGC
-typedef list<Value *, gc_allocator<Value *> > ValueList;
+typedef std::list<Value *, gc_allocator<Value *> > ValueList;
#else
-typedef list<Value *> ValueList;
+typedef std::list<Value *> ValueList;
#endif