Skip to content

Commit 2080426

Browse files
authored
Merge pull request #3291 from practicalswift/syntax-fixes-20160701
[gardening] Don't compare with false
2 parents cb13d70 + 6b5e688 commit 2080426

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

validation-test/stdlib/Prototypes/PersistentVector.swift.gyb

+6-6
Original file line numberDiff line numberDiff line change
@@ -490,8 +490,8 @@ struct _PVSparseVectorNodePointer<Key : Hashable, Value>
490490
layout: _PVSparseVectorNodeLayoutParameters
491491
) {
492492
precondition(i >= keyCount && i < 32) // sanity check
493-
precondition(childNodePopulationBitmap[i] == false) // sanity check
494-
precondition(keyPopulationBitmap[i] == false) // sanity check
493+
precondition(!childNodePopulationBitmap[i]) // sanity check
494+
precondition(!keyPopulationBitmap[i]) // sanity check
495495

496496
(_keyVector(layout: layout) + keyCount).initialize(with: key)
497497
(_valueVector(layout: layout) + keyCount).initialize(with: value)
@@ -1135,8 +1135,8 @@ struct _PVArrayNodePointer<Key : Hashable, Value>
11351135
value: Value
11361136
) {
11371137
precondition(i >= 0 && i < 32) // sanity check
1138-
precondition(childNodePopulationBitmap[i] == false) // sanity check
1139-
precondition(keyPopulationBitmap[i] == false) // sanity check
1138+
precondition(!childNodePopulationBitmap[i]) // sanity check
1139+
precondition(!keyPopulationBitmap[i]) // sanity check
11401140

11411141
UnsafeMutablePointer<Key>(
11421142
_childNodeOrKeyArray + _Self._childNodeOrKeyStride * i)
@@ -1664,7 +1664,7 @@ struct _PVAnyNodePointer<Key : Hashable, Value>
16641664
case 2:
16651665
return Mirror(reflecting: asCollisionNode)
16661666
default:
1667-
return Mirror(self, children: [ "unknown tag" : tag ])
1667+
return Mirror(self, children: ["unknown tag": tag])
16681668
}
16691669
}
16701670
}
@@ -1896,7 +1896,7 @@ PersistentVectorTests.test("sizeof") {
18961896
}
18971897

18981898
%{
1899-
TRACE = '''_ message: @autoclosure ()->String = "",
1899+
TRACE = '''_ message: @autoclosure () -> String = "",
19001900
showFrame: Bool = true,
19011901
stackTrace: SourceLocStack = SourceLocStack(),
19021902
file: String = #file, line: UInt = #line'''

0 commit comments

Comments
 (0)