diff options
Diffstat (limited to 'base/json/json_writer.cc')
-rw-r--r-- | base/json/json_writer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/json/json_writer.cc b/base/json/json_writer.cc index 9ca4813..e8cf9ac 100644 --- a/base/json/json_writer.cc +++ b/base/json/json_writer.cc @@ -139,7 +139,7 @@ void JSONWriter::BuildJSONString(const Value* const node, int depth) { const ListValue* list = static_cast<const ListValue*>(node); for (size_t i = 0; i < list->GetSize(); ++i) { - Value* value = NULL; + const Value* value = NULL; bool result = list->Get(i, &value); DCHECK(result); |