diff options
Diffstat (limited to 'third_party/nix/src/libexpr/value.hh')
-rw-r--r-- | third_party/nix/src/libexpr/value.hh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/third_party/nix/src/libexpr/value.hh b/third_party/nix/src/libexpr/value.hh index 892c11220e42..1f20a440d933 100644 --- a/third_party/nix/src/libexpr/value.hh +++ b/third_party/nix/src/libexpr/value.hh @@ -244,14 +244,9 @@ void mkPath(Value& v, const char* s); not included. */ size_t valueSize(Value& v); -#if HAVE_BOEHMGC typedef std::vector<Value*, gc_allocator<Value*> > ValueVector; typedef std::map<Symbol, Value*, std::less<Symbol>, gc_allocator<std::pair<const Symbol, Value*> > > ValueMap; -#else -typedef std::vector<Value*> ValueVector; -typedef std::map<Symbol, Value*> ValueMap; -#endif } // namespace nix |