Skip to content

Commit ad616dc

Browse files
committed
GCF
1 parent 0673dc5 commit ad616dc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lldb/tools/lldb-dap/ProgressEvent.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,10 @@ ProgressEvent::Create(uint64_t progress_id, std::optional<StringRef> message,
8383
return event;
8484
}
8585

86-
bool ProgressEvent::EqualsForIDE(const ProgressEvent &other, uint64_t total) const {
86+
bool ProgressEvent::EqualsForIDE(const ProgressEvent &other,
87+
uint64_t total) const {
8788
return m_progress_id == other.m_progress_id &&
88-
m_event_type == other.m_event_type &&
89+
m_event_type == other.m_event_type &&
8990
// If we check the percentage of a non-deterministic event
9091
// we will basically never send the event, because N+1/Uint64_max
9192
// will always be an infinitesimally small change.

0 commit comments

Comments
 (0)