aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorGravatar Philipp Wollermann <philwo@google.com>2016-10-21 13:25:03 +0000
committerGravatar Philipp Wollermann <philwo@google.com>2016-10-21 14:21:42 +0000
commit6446f5250a683bcfe250a8bbc7ffc38357e3216e (patch)
tree9f3b78455eca63b3ff281e7358fa08f0c0cb270c /examples
parent3eef69dbef66371d0d3633a8e5fbbfe9971df961 (diff)
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
Diffstat (limited to 'examples')
-rw-r--r--examples/swift/BarLib/mul.swift2
1 files changed, 1 insertions, 1 deletions
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
}
}