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 e65aab7 commit 2b8d1beCopy full SHA for 2b8d1be
stdlib/public/RuntimeModule/Backtrace.swift
@@ -428,6 +428,11 @@ extension Backtrace {
428
return Backtrace(architecture: context.architecture,
429
frames: unwinder.dropFirst(offset),
430
images: images)
431
+
432
+ @unknown default:
433
+ // This will never execute but its needed to avoid warnings when
434
+ // the Backtrace library is built with library evolution.
435
+ fatalError()
436
}
437
438
0 commit comments