mirror of
https://github.com/intel/llvm.git
synced 2026-01-21 12:19:23 +08:00
Fix LLDB tweak in 62a47e994fcf5b73e29547d26cd9676b30cb69a3
This commit is contained in:
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user