@@ -31,39 +31,39 @@ final class PackageDescription6_2LoadingTests: PackageDescriptionLoadingTests {
31
31
.target(
32
32
name: " Foo " ,
33
33
cSettings: [
34
- .enableWarning(name: " implicit-fallthrough " ),
35
- .disableWarning(name: " unused-parameter " ),
34
+ .enableWarning( " implicit-fallthrough " ),
35
+ .disableWarning( " unused-parameter " ),
36
36
.treatAllWarnings(as: .error),
37
- .treatWarning(name: " deprecated-declarations " , as: .warning),
37
+ .treatWarning( " deprecated-declarations " , as: .warning),
38
38
],
39
39
cxxSettings: [
40
- .enableWarning(name: " implicit-fallthrough " ),
41
- .disableWarning(name: " unused-parameter " ),
40
+ .enableWarning( " implicit-fallthrough " ),
41
+ .disableWarning( " unused-parameter " ),
42
42
.treatAllWarnings(as: .warning),
43
- .treatWarning(name: " deprecated-declarations " , as: .error),
43
+ .treatWarning( " deprecated-declarations " , as: .error),
44
44
],
45
45
swiftSettings: [
46
46
.treatAllWarnings(as: .error),
47
- .treatWarning(name: " DeprecatedDeclaration " , as: .warning),
47
+ .treatWarning( " DeprecatedDeclaration " , as: .warning),
48
48
]
49
49
),
50
50
.target(
51
51
name: " Bar " ,
52
52
cSettings: [
53
- .enableWarning(name: " implicit-fallthrough " ),
54
- .disableWarning(name: " unused-parameter " ),
53
+ .enableWarning( " implicit-fallthrough " ),
54
+ .disableWarning( " unused-parameter " ),
55
55
.treatAllWarnings(as: .warning),
56
- .treatWarning(name: " deprecated-declarations " , as: .error),
56
+ .treatWarning( " deprecated-declarations " , as: .error),
57
57
],
58
58
cxxSettings: [
59
- .enableWarning(name: " implicit-fallthrough " ),
60
- .disableWarning(name: " unused-parameter " ),
59
+ .enableWarning( " implicit-fallthrough " ),
60
+ .disableWarning( " unused-parameter " ),
61
61
.treatAllWarnings(as: .error),
62
- .treatWarning(name: " deprecated-declarations " , as: .warning),
62
+ .treatWarning( " deprecated-declarations " , as: .warning),
63
63
],
64
64
swiftSettings: [
65
65
.treatAllWarnings(as: .warning),
66
- .treatWarning(name: " DeprecatedDeclaration " , as: .error),
66
+ .treatWarning( " DeprecatedDeclaration " , as: .error),
67
67
]
68
68
)
69
69
]
0 commit comments