diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/libexpr/eval.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh index aa706cf98359..82c1a43b13d6 100644 --- a/src/libexpr/eval.hh +++ b/src/libexpr/eval.hh @@ -108,7 +108,7 @@ private: /* A cache from path names to values. */ #if HAVE_BOEHMGC - typedef std::map<Path, Value, std::less<Path>, gc_allocator<std::pair<const Path, Value> > > FileEvalCache; + typedef std::map<Path, Value, std::less<Path>, traceable_allocator<std::pair<const Path, Value> > > FileEvalCache; #else typedef std::map<Path, Value> FileEvalCache; #endif |