File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ public extension FILETIME {
200200///
201201/// The C type is a typedef for `int`.
202202@frozen
203- public struct WindowsBool : ExpressibleByBooleanLiteral {
203+ public struct WindowsBool : ExpressibleByBooleanLiteral {
204204 @usableFromInline
205205 var _value : Int32
206206
@@ -222,21 +222,21 @@ public struct WindowsBool : ExpressibleByBooleanLiteral {
222222 }
223223}
224224
225- extension WindowsBool : CustomReflectable {
225+ extension WindowsBool : CustomReflectable {
226226 /// Returns a mirror that reflects `self`.
227227 public var customMirror : Mirror {
228228 return Mirror ( reflecting: boolValue)
229229 }
230230}
231231
232- extension WindowsBool : CustomStringConvertible {
232+ extension WindowsBool : CustomStringConvertible {
233233 /// A textual representation of `self`.
234234 public var description : String {
235235 return self . boolValue. description
236236 }
237237}
238238
239- extension WindowsBool : Equatable {
239+ extension WindowsBool : Equatable {
240240 @_transparent
241241 public static func == ( lhs: WindowsBool , rhs: WindowsBool ) -> Bool {
242242 return lhs. boolValue == rhs. boolValue
You can’t perform that action at this time.
0 commit comments