Swift2への移行対応で行なったこと ###'#' has been removed from Swift; double up 'xxx xxx' to make the argument label the same as the parameter name `#` が廃止になったので第一引数に外部引数名が必要な場合は同じ引数名をつけてあげる ```swift // swift1.2 func say(#xxx: String) { print(xxx) } say(xxx: "Hello") // swift2 func say(xxx xxx: String) { print(xxx) } say(xxx: "Hello") ``` ###Extraneous argument label 'xxx:' in call 第一引数に外部引数名が付いてない場合は呼び出し元のラベルを