mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
+ (Foo *)foo:(id)obj error:(NSError **)error NS_SWIFT_NAME(init(object:)); + (Foo *)foo:(id)obj error:(NSError **)error NS_SWIFT_NAME(init(object:error:)); These are now mapped, respectively, to init(object: AnyObject) throws init(object: AnyObject, error: ()) throws rather than both mapping to the first one and having no way to specify the second. Swift side of rdar://problem/21091469. Requires Clang commits. Swift SVN r29534