[stdlib] Drop unneeded protocol requirement

Conversion to cocoa is not a common requirement for all models of
_ArrayBufferType

Swift SVN r22947
This commit is contained in:
Dave Abrahams
2014-10-26 18:29:42 +00:00
parent 1c2ec918bd
commit 1a9f96e1c7
7 changed files with 6 additions and 25 deletions

View File

@@ -88,7 +88,7 @@ for x: AnyObject in s_m {
// CHECK: 2
// CHECK: 1
var a2 = [3, 2, 1]
var nsa2 = (a2._asCocoaArray() as AnyObject) as NSArray
var nsa2 = (a2._buffer._asCocoaArray() as AnyObject) as NSArray
for x: AnyObject in nsa2 {
println(x.description!)
}