Skip to content

Commit 62ff85f

Browse files
santhoshe447Santhosh Kumar EllendulaSanthosh Kumar Ellendula
authored
[lldb-dap] Fix for missing 'raw_string_ostream::flush' removal in ProgressEvent.cpp; addressing #108745 (#114087)
I hope it was missed unintentionally, pushing the same for the review. Ref: #108745 --------- Co-authored-by: Santhosh Kumar Ellendula <[email protected]> Co-authored-by: Santhosh Kumar Ellendula <[email protected]>
1 parent 6d9fc1b commit 62ff85f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

lldb/tools/lldb-dap/ProgressEvent.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ json::Value ProgressEvent::ToJSON() const {
110110
std::string progress_id_str;
111111
llvm::raw_string_ostream progress_id_strm(progress_id_str);
112112
progress_id_strm << m_progress_id;
113-
progress_id_strm.flush();
114113
body.try_emplace("progressId", progress_id_str);
115114

116115
if (m_event_type == progressStart) {

0 commit comments

Comments
 (0)