From c395a48be2ad58560590897e11793db032873ed6 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Thu, 21 May 2020 04:56:22 +0100 Subject: 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. --- third_party/nix/src/libexpr/json-to-value.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'third_party/nix/src/libexpr/json-to-value.cc') diff --git a/third_party/nix/src/libexpr/json-to-value.cc b/third_party/nix/src/libexpr/json-to-value.cc index 68f016904ef7..ea7d575aa9e2 100644 --- a/third_party/nix/src/libexpr/json-to-value.cc +++ b/third_party/nix/src/libexpr/json-to-value.cc @@ -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; -- cgit 1.4.1