diff options
author | Vincent Ambo <tazjin@google.com> | 2020-05-21T03·56+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-05-21T04·09+0100 |
commit | c395a48be2ad58560590897e11793db032873ed6 (patch) | |
tree | 11cc692b442c10db9f1a6055cfe68bc534e6f494 /third_party/nix/src/libexpr/value-to-xml.cc | |
parent | 97e85f94e5ee7e6c8340011757a71222b8091cda (diff) |
fix(3p/nix): Compatibility with updated SymbolTable r/795
The functions in SymbolTable have been renamed to match the Google Style guide, and some debug-only functions have been removed.
Diffstat (limited to 'third_party/nix/src/libexpr/value-to-xml.cc')
-rw-r--r-- | third_party/nix/src/libexpr/value-to-xml.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/nix/src/libexpr/value-to-xml.cc b/third_party/nix/src/libexpr/value-to-xml.cc index 7fab6e2ffe5e..160c6eba3313 100644 --- a/third_party/nix/src/libexpr/value-to-xml.cc +++ b/third_party/nix/src/libexpr/value-to-xml.cc @@ -34,7 +34,7 @@ static void showAttrs(EvalState& state, bool strict, bool location, } for (auto& i : names) { - Attr& a(*attrs.find(state.symbols.create(i))); + Attr& a(*attrs.find(state.symbols.Create(i))); XMLAttrs xmlAttrs; xmlAttrs["name"] = i; @@ -86,7 +86,7 @@ static void printValueAsXML(EvalState& state, bool strict, bool location, XMLAttrs xmlAttrs; Bindings::iterator a = - v.attrs->find(state.symbols.create("derivation")); + v.attrs->find(state.symbols.Create("derivation")); Path drvPath; a = v.attrs->find(state.sDrvPath); |