Fix LLDB tweak in 62a47e994fcf5b73e29547d26cd9676b30cb69a3

This commit is contained in:
Sam McCall 2020-09-24 01:30:42 +02:00
parent fa69b60806
commit 751f5c8146
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ static StructuredData::ObjectSP ParseJSONValue(json::Value &value) {
if (auto b = value.getAsBoolean())
return std::make_shared<StructuredData::Boolean>(*b);
if (auto i = value.getAsInteger(i))
if (auto i = value.getAsInteger())
return std::make_shared<StructuredData::Integer>(*i);
if (auto d = value.getAsNumber())