about summary refs log tree commit diff
path: root/third_party/nix/src/libexpr/value.hh
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-05-23T03·43+0100
committerVincent Ambo <tazjin@google.com>2020-05-23T05·18+0100
commitda4ca4e02f59d8d69f9996bd8de2f20f72d1d5ff (patch)
tree553fe5528a19aff727295a33a2911fd5bd267b74 /third_party/nix/src/libexpr/value.hh
parent92792264f78ce95c08fdd802110ddad7956c0758 (diff)
chore(3p/nix/libexpr): Minor readability improvements in eval/value r/820
Diffstat (limited to 'third_party/nix/src/libexpr/value.hh')
-rw-r--r--third_party/nix/src/libexpr/value.hh5
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 892c11220e..1f20a440d9 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