@@ -490,8 +490,8 @@ struct _PVSparseVectorNodePointer<Key : Hashable, Value>
490
490
layout: _PVSparseVectorNodeLayoutParameters
491
491
) {
492
492
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
495
495
496
496
(_keyVector(layout: layout) + keyCount).initialize(with: key)
497
497
(_valueVector(layout: layout) + keyCount).initialize(with: value)
@@ -1135,8 +1135,8 @@ struct _PVArrayNodePointer<Key : Hashable, Value>
1135
1135
value: Value
1136
1136
) {
1137
1137
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
1140
1140
1141
1141
UnsafeMutablePointer<Key>(
1142
1142
_childNodeOrKeyArray + _Self._childNodeOrKeyStride * i)
@@ -1664,7 +1664,7 @@ struct _PVAnyNodePointer<Key : Hashable, Value>
1664
1664
case 2:
1665
1665
return Mirror(reflecting: asCollisionNode)
1666
1666
default:
1667
- return Mirror(self, children: [ "unknown tag" : tag ])
1667
+ return Mirror(self, children: ["unknown tag": tag])
1668
1668
}
1669
1669
}
1670
1670
}
@@ -1896,7 +1896,7 @@ PersistentVectorTests.test("sizeof") {
1896
1896
}
1897
1897
1898
1898
%{
1899
- TRACE = '''_ message: @autoclosure ()-> String = "",
1899
+ TRACE = '''_ message: @autoclosure () -> String = "",
1900
1900
showFrame: Bool = true,
1901
1901
stackTrace: SourceLocStack = SourceLocStack(),
1902
1902
file: String = #file, line: UInt = #line'''
0 commit comments