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 {
200
200
///
201
201
/// The C type is a typedef for `int`.
202
202
@frozen
203
- public struct WindowsBool : ExpressibleByBooleanLiteral {
203
+ public struct WindowsBool : ExpressibleByBooleanLiteral {
204
204
@usableFromInline
205
205
var _value : Int32
206
206
@@ -222,21 +222,21 @@ public struct WindowsBool : ExpressibleByBooleanLiteral {
222
222
}
223
223
}
224
224
225
- extension WindowsBool : CustomReflectable {
225
+ extension WindowsBool : CustomReflectable {
226
226
/// Returns a mirror that reflects `self`.
227
227
public var customMirror : Mirror {
228
228
return Mirror ( reflecting: boolValue)
229
229
}
230
230
}
231
231
232
- extension WindowsBool : CustomStringConvertible {
232
+ extension WindowsBool : CustomStringConvertible {
233
233
/// A textual representation of `self`.
234
234
public var description : String {
235
235
return self . boolValue. description
236
236
}
237
237
}
238
238
239
- extension WindowsBool : Equatable {
239
+ extension WindowsBool : Equatable {
240
240
@_transparent
241
241
public static func == ( lhs: WindowsBool , rhs: WindowsBool ) -> Bool {
242
242
return lhs. boolValue == rhs. boolValue
You can’t perform that action at this time.
0 commit comments