summaryrefslogtreecommitdiff
path: root/source/compiler-core/slang-artifact-associated-impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/compiler-core/slang-artifact-associated-impl.cpp')
-rw-r--r--source/compiler-core/slang-artifact-associated-impl.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/source/compiler-core/slang-artifact-associated-impl.cpp b/source/compiler-core/slang-artifact-associated-impl.cpp
index cbecd1360..88ed9f665 100644
--- a/source/compiler-core/slang-artifact-associated-impl.cpp
+++ b/source/compiler-core/slang-artifact-associated-impl.cpp
@@ -196,10 +196,14 @@ void ArtifactDiagnostics::requireErrorDiagnostic()
typedef ArtifactDiagnostic::Severity Severity;
switch (severity)
{
- default: return UnownedStringSlice::fromLiteral("Unknown");
- case Severity::Info: return UnownedStringSlice::fromLiteral("Info");
- case Severity::Warning: return UnownedStringSlice::fromLiteral("Warning");
- case Severity::Error: return UnownedStringSlice::fromLiteral("Error");
+ default:
+ return UnownedStringSlice::fromLiteral("Unknown");
+ case Severity::Info:
+ return UnownedStringSlice::fromLiteral("Info");
+ case Severity::Warning:
+ return UnownedStringSlice::fromLiteral("Warning");
+ case Severity::Error:
+ return UnownedStringSlice::fromLiteral("Error");
}
}