@@ -2209,7 +2209,7 @@ public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollect
2209
2209
let buffer : UnsafeRawBufferPointer
2210
2210
switch _representation {
2211
2211
case . empty:
2212
- buffer = UnsafeRawBufferPointer ( _empty : ( ) )
2212
+ buffer = UnsafeRawBufferPointer ( start : nil , count : 0 )
2213
2213
case . inline:
2214
2214
buffer = unsafe UnsafeRawBufferPointer(
2215
2215
start: UnsafeRawPointer ( Builtin . addressOfBorrow ( self ) ) ,
@@ -2245,7 +2245,7 @@ public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollect
2245
2245
let buffer : UnsafeMutableRawBufferPointer
2246
2246
switch _representation {
2247
2247
case . empty:
2248
- buffer = UnsafeMutableRawBufferPointer ( _empty : ( ) )
2248
+ buffer = UnsafeMutableRawBufferPointer ( start : nil , count : 0 )
2249
2249
case . inline:
2250
2250
buffer = unsafe UnsafeMutableRawBufferPointer(
2251
2251
start: UnsafeMutableRawPointer ( Builtin . addressOfBorrow ( self ) ) ,
@@ -2277,7 +2277,7 @@ public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollect
2277
2277
let buffer : UnsafeMutableRawBufferPointer
2278
2278
switch _representation {
2279
2279
case . empty:
2280
- buffer = UnsafeMutableRawBufferPointer ( _empty : ( ) )
2280
+ buffer = UnsafeMutableRawBufferPointer ( start : nil , count : 0 )
2281
2281
case . inline:
2282
2282
buffer = unsafe UnsafeMutableRawBufferPointer(
2283
2283
start: UnsafeMutableRawPointer ( Builtin . addressOfBorrow ( self ) ) ,
0 commit comments