We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b9202b6 + db5365b commit 9b3bc06Copy full SHA for 9b3bc06
lldb/source/Plugins/TypeSystem/Swift/StoringDiagnosticConsumer.h
@@ -243,12 +243,12 @@ class StoringDiagnosticConsumer : public swift::DiagnosticConsumer {
243
static lldb::Severity SeverityForKind(swift::DiagnosticKind kind) {
244
switch (kind) {
245
case swift::DiagnosticKind::Error:
246
- return eSeverityError;
+ return lldb::eSeverityError;
247
case swift::DiagnosticKind::Warning:
248
- return eSeverityWarning;
+ return lldb::eSeverityWarning;
249
case swift::DiagnosticKind::Note:
250
case swift::DiagnosticKind::Remark:
251
- return eSeverityInfo;
+ return lldb::eSeverityInfo;
252
}
253
254
llvm_unreachable("Unhandled DiagnosticKind in switch.");
0 commit comments