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.
1 parent b18f7e6 commit d4a9650Copy full SHA for d4a9650
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