diff options
-rw-r--r-- | third_party/nix/src/libexpr/value.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/nix/src/libexpr/value.hh b/third_party/nix/src/libexpr/value.hh index 01b9fd3a216d..7308dd31933a 100644 --- a/third_party/nix/src/libexpr/value.hh +++ b/third_party/nix/src/libexpr/value.hh @@ -242,9 +242,9 @@ void mkPath(Value& v, const char* s); not included. */ size_t valueSize(Value& v); -typedef std::vector<Value*, gc_allocator<Value*> > ValueVector; +typedef std::vector<Value*, traceable_allocator<Value*>> ValueVector; typedef std::map<Symbol, Value*, std::less<Symbol>, - gc_allocator<std::pair<const Symbol, Value*> > > + traceable_allocator<std::pair<const Symbol, Value*>>> ValueMap; } // namespace nix |