[stdlib] update for 'inout' adjustment (SE-0031)

This commit is contained in:
Daniel Duan
2016-02-26 12:02:29 -08:00
parent c9927f66f0
commit 2bc78b8c09
134 changed files with 499 additions and 499 deletions

View File

@@ -21,7 +21,7 @@ let arrayCount = 1024
func _arrayReplace<B: _ArrayBufferType, C: CollectionType
where C.Generator.Element == B.Element, B.Index == Int
>(
inout target: B, _ subRange: Range<Int>, _ newValues: C
target: inout B, _ subRange: Range<Int>, _ newValues: C
) {
_precondition(
subRange.startIndex >= 0,