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 @@ -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
You can’t perform that action at this time.
0 commit comments