mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[stdlib] Unwrap some lines shrunken by T*
Concision FTW! Swift SVN r18232
This commit is contained in:
@@ -164,9 +164,7 @@ struct ContiguousArrayBuffer<T> : ArrayBufferType, LogicValue {
|
||||
/// Copy the given subRange of this buffer into uninitialized memory
|
||||
/// starting at target. Return a pointer past-the-end of the
|
||||
/// just-initialized memory.
|
||||
func _uninitializedCopy(
|
||||
subRange: Range<Int>, target: T*
|
||||
) -> T* {
|
||||
func _uninitializedCopy(subRange: Range<Int>, target: T*) -> T* {
|
||||
_sanityCheck(subRange.startIndex >= 0)
|
||||
_sanityCheck(subRange.endIndex >= subRange.startIndex)
|
||||
_sanityCheck(subRange.endIndex <= count)
|
||||
|
||||
Reference in New Issue
Block a user