diff options
Diffstat (limited to 'src/libexpr/get-drvs.hh')
-rw-r--r-- | src/libexpr/get-drvs.hh | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/libexpr/get-drvs.hh b/src/libexpr/get-drvs.hh index d620eca63..44aac3015 100644 --- a/src/libexpr/get-drvs.hh +++ b/src/libexpr/get-drvs.hh @@ -80,13 +80,7 @@ public: bool hasFailed() { return failed; }; }; - -#if HAVE_BOEHMGC -typedef std::list<DrvInfo, traceable_allocator<DrvInfo>> DrvInfos; -#else -typedef std::list<DrvInfo> DrvInfos; -#endif - +using DrvInfos = GcList<DrvInfo>; /** * If value `v` denotes a derivation, return a DrvInfo object |