fix(3p/nix): Compatibility with updated SymbolTable
The functions in SymbolTable have been renamed to match the Google Style guide, and some debug-only functions have been removed.
This commit is contained in:
parent
97e85f94e5
commit
c395a48be2
21 changed files with 141 additions and 137 deletions
2
third_party/nix/src/libexpr/value-to-json.cc
vendored
2
third_party/nix/src/libexpr/value-to-json.cc
vendored
|
|
@ -54,7 +54,7 @@ void printValueAsJSON(EvalState& state, bool strict, Value& v,
|
|||
names.insert(j.name);
|
||||
}
|
||||
for (auto& j : names) {
|
||||
Attr& a(*v.attrs->find(state.symbols.create(j)));
|
||||
Attr& a(*v.attrs->find(state.symbols.Create(j)));
|
||||
auto placeholder(obj.placeholder(j));
|
||||
printValueAsJSON(state, strict, *a.value, placeholder, context);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue