Warn about implicit overrides (#5936)

This commit is contained in:
Danny Mösch
2025-01-04 17:29:26 +01:00
committed by GitHub
parent 4f55943678
commit 7321f2bbd0
2 changed files with 1 additions and 3 deletions
+1
View File
@@ -32,6 +32,7 @@ copts = [
"ForwardTrailingClosures",
"-enable-upcoming-feature",
"ImplicitOpenExistentials",
"-Xfrontend", "-warn-implicit-overrides",
]
strict_concurrency_copts = [
@@ -10,9 +10,6 @@ public protocol Reporter: CustomStringConvertible {
/// A more detailed description of the reporter's output.
static var description: String { get }
/// For CustomStringConvertible conformance.
var description: String { get }
/// Return a string with the report for the specified violations.
///
/// - parameter violations: The violations to report.