mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This decreases total testing time by over a minute on my old Mac Pro. It probably has much less effect on systems with fewer cores, but shouldn't be any worse there. Swift SVN r22745
19 lines
672 B
Objective-C
19 lines
672 B
Objective-C
//===--- ArrayBridge.h ----------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See http://swift.org/LICENSE.txt for license information
|
|
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#import <Foundation/Foundation.h>
|
|
|
|
id arrayAsID(NSArray* a);
|
|
NSArray* idAsArray(id a);
|
|
|
|
void testBridgedObjC(id thunks);
|
|
void testBridgedSwift(id thunks);
|