From 6446f5250a683bcfe250a8bbc7ffc38357e3216e Mon Sep 17 00:00:00 2001 From: Philipp Wollermann Date: Fri, 21 Oct 2016 13:25:03 +0000 Subject: Fix bazel_apple_test and Swift example to work with Xcode 8.0. This is needed to make Bazel CI green(er) again, because CI machines are being upgraded to macOS Sierra and Xcode 8.0. -- MOS_MIGRATED_REVID=136825401 --- examples/swift/BarLib/mul.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/swift/BarLib/mul.swift b/examples/swift/BarLib/mul.swift index 1f1df40512..64d66cdbea 100644 --- a/examples/swift/BarLib/mul.swift +++ b/examples/swift/BarLib/mul.swift @@ -2,7 +2,7 @@ public class Multiplier { public init() {} - public func multiply(a: Int, _ b: Int) -> Int { + public func multiply(_ a: Int, _ b: Int) -> Int { return a * b } } -- cgit v1.2.3