[stdlib] Fix "#" parameter warnings due to new rules

Swift SVN r27807
This commit is contained in:
Dave Abrahams
2015-04-27 18:15:34 +00:00
parent 9006fca42b
commit e2c6c7e90d
22 changed files with 103 additions and 93 deletions

View File

@@ -302,7 +302,7 @@ public struct _ContiguousArrayBuffer<T> : _ArrayBufferType {
public mutating func replace<
C: CollectionType where C.Generator.Element == Element
>(
#subRange: Range<Int>, with newCount: Int, elementsOf newValues: C
subRange subRange: Range<Int>, with newCount: Int, elementsOf newValues: C
) {
_arrayNonSliceInPlaceReplace(&self, subRange, newCount, newValues)
}