about summary refs log tree commit diff
path: root/third_party/nix/src/libexpr/attr-set.hh
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-05-23T19·29+0100
committerVincent Ambo <tazjin@google.com>2020-05-23T19·29+0100
commit55b1a4764752e8a52df326b7e6ec9809c28c3a8e (patch)
treee26b9ca9686b5211da95e4320a3eb1aef78fbae2 /third_party/nix/src/libexpr/attr-set.hh
parentab1fbd4c6ec65966a28abbccc1efefe74d189bba (diff)
refactor(3p/nix/libexpr): Make other 'const' in Bindings::merge r/828
Diffstat (limited to '')
-rw-r--r--third_party/nix/src/libexpr/attr-set.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/nix/src/libexpr/attr-set.hh b/third_party/nix/src/libexpr/attr-set.hh
index 19d1c8f530..37e6d5e1ca 100644
--- a/third_party/nix/src/libexpr/attr-set.hh
+++ b/third_party/nix/src/libexpr/attr-set.hh
@@ -64,7 +64,7 @@ class Bindings {
   iterator end();
 
   // Merge values from other into the current attribute
-  void merge(Bindings* other);
+  void merge(const Bindings& other);
 
   // ???
   [[deprecated]] size_t capacity();