mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[SE-0046] Implements consistent function parameter labels by discarding extraneous parameter names and adding _ where necessary
This commit is contained in:
@@ -39,7 +39,7 @@ func barrier() {
|
||||
expectTrue(ret == 0 || ret == _stdlib_PTHREAD_BARRIER_SERIAL_THREAD)
|
||||
}
|
||||
|
||||
func sliceConcurrentAppendThread(tid: ThreadID) {
|
||||
func sliceConcurrentAppendThread(_ tid: ThreadID) {
|
||||
for i in 0..<100 {
|
||||
barrier()
|
||||
if tid == .Primary {
|
||||
|
||||
Reference in New Issue
Block a user