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/json-to-value.cc
vendored
2
third_party/nix/src/libexpr/json-to-value.cc
vendored
|
|
@ -105,7 +105,7 @@ static void parseJSON(EvalState& state, const char*& s, Value& v) {
|
|||
s++;
|
||||
Value* v2 = state.allocValue();
|
||||
parseJSON(state, s, *v2);
|
||||
attrs[state.symbols.create(name)] = v2;
|
||||
attrs[state.symbols.Create(name)] = v2;
|
||||
skipWhitespace(s);
|
||||
if (*s == '}') {
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue