Skip to content

Commit 8959322

Browse files
committed
[lldb-dap] Fix for missing 'raw_string_ostream::flush' removal in ProgressEvent.cpp; addressing #108745
1 parent 684b1e7 commit 8959322

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)