Skip to content

Commit e4388c1

Browse files
committed
Windows: adjust Swift style in WinSDK (NFC)
This cleans up the style to match Swift's style.
1 parent 205bfee commit e4388c1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

stdlib/public/Windows/WinSDK.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)