diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-05-25 15:49:41 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-05-26 12:40:01 +0200 |
commit | 9acc770ce4bf0e748b41d2f9515c436ae6960c6d (patch) | |
tree | 552a87fa45299c3735c2d01e7f4f414c84f8a148 /src/libexpr/get-drvs.hh | |
parent | 762fa2b2ff61747aef5b3b58015fa3d7c4d9f383 (diff) |
Remove pre-C++11 hackiness
Diffstat (limited to 'src/libexpr/get-drvs.hh')
-rw-r--r-- | src/libexpr/get-drvs.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/get-drvs.hh b/src/libexpr/get-drvs.hh index 7cc1abef2..bbd2d3c47 100644 --- a/src/libexpr/get-drvs.hh +++ b/src/libexpr/get-drvs.hh @@ -73,7 +73,7 @@ public: #if HAVE_BOEHMGC -typedef std::list<DrvInfo, traceable_allocator<DrvInfo> > DrvInfos; +typedef std::list<DrvInfo, traceable_allocator<DrvInfo>> DrvInfos; #else typedef std::list<DrvInfo> DrvInfos; #endif |