Skip to content

Commit 4f87f0c

Browse files
committed
[gardening] fix code indentation
1 parent 0daa558 commit 4f87f0c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

stdlib/public/core/UnsafeRawPointer.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ public struct UnsafeRawPointer: _Pointer {
244244
/// - Parameter other: The typed pointer to convert.
245245
@_transparent
246246
public init<T>(@_nonEphemeral _ other: UnsafeMutablePointer<T>) {
247-
_rawValue = other._rawValue
247+
_rawValue = other._rawValue
248248
}
249249

250250
/// Creates a new raw pointer from the given typed pointer.
@@ -257,8 +257,8 @@ public struct UnsafeRawPointer: _Pointer {
257257
/// result is `nil`.
258258
@_transparent
259259
public init?<T>(@_nonEphemeral _ other: UnsafeMutablePointer<T>?) {
260-
guard let unwrapped = other else { return nil }
261-
_rawValue = unwrapped._rawValue
260+
guard let unwrapped = other else { return nil }
261+
_rawValue = unwrapped._rawValue
262262
}
263263

264264
/// Deallocates the previously allocated memory block referenced by this pointer.
@@ -429,7 +429,7 @@ public struct UnsafeRawPointer: _Pointer {
429429
MemoryLayout<T>.alignment._builtinWordValue)
430430
return Builtin.loadRaw(alignedPointer)
431431
#else
432-
return Builtin.loadRaw(rawPointer)
432+
return Builtin.loadRaw(rawPointer)
433433
#endif
434434
}
435435

0 commit comments

Comments
 (0)