Skip to content

Commit 6a3e5ff

Browse files
ashgtiJDevlieghere
andcommitted
Update lldb/tools/lldb-dap/ProtocolUtils.cpp
Co-authored-by: Jonas Devlieghere <[email protected]>
1 parent 961bd58 commit 6a3e5ff

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lldb/tools/lldb-dap/ProtocolUtils.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,10 @@ protocol::Thread CreateThread(lldb::SBThread &thread, lldb::SBFormat &format) {
130130
} else if (!queue_name.empty()) {
131131
auto kind = thread.GetQueue().GetKind();
132132
std::string queue_kind_label = "";
133-
if (kind == lldb::eQueueKindSerial) {
133+
if (kind == lldb::eQueueKindSerial)
134134
queue_kind_label = " (serial)";
135-
} else if (kind == lldb::eQueueKindConcurrent) {
135+
else if (kind == lldb::eQueueKindConcurrent)
136136
queue_kind_label = " (concurrent)";
137-
}
138137

139138
name = llvm::formatv("Thread {0} Queue: {1}{2}", thread.GetIndexID(),
140139
queue_name, queue_kind_label)

0 commit comments

Comments
 (0)