Skip to content

Commit c252815

Browse files
committed
[lldb][lldb-dap] Review changes.
1 parent 5ffbb9d commit c252815

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Interpreter/OptionValueEnumeration.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ OptionValueEnumeration::ToJSON(const ExecutionContext *exe_ctx) {
4444
return enums.cstring.GetStringRef();
4545
}
4646

47-
return llvm::formatv("%", PRIu64, static_cast<uint64_t>(m_current_value));
47+
return std::to_string(static_cast<uint64_t>(m_current_value));
4848
}
4949

5050
Status OptionValueEnumeration::SetValueFromString(llvm::StringRef value,

0 commit comments

Comments
 (0)