Use more modern warnings as errors setting (#608)

This commit is contained in:
Max Goedjen 2025-08-17 15:36:09 -05:00 committed by GitHub
parent efe5858ce1
commit 197f63d1eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -78,6 +78,6 @@ let package = Package(
var swiftSettings: [PackageDescription.SwiftSetting] {
[
.swiftLanguageMode(.v6),
.unsafeFlags(["-warnings-as-errors"])
.treatAllWarnings(as: .error),
]
}