Skip to content

Commit d8e0bf5

Browse files
committed
[Swift 4] Update Priority Queue
1 parent 665b526 commit d8e0bf5

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

Priority Queue/Tests/PriorityQueueTests.swift

+7
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ private func < (m1: Message, m2: Message) -> Bool {
1111
}
1212

1313
class PriorityQueueTest: XCTestCase {
14+
func testSwift4() {
15+
// last checked with Xcode 9.0b4
16+
#if swift(>=4.0)
17+
print("Hello, Swift 4!")
18+
#endif
19+
}
20+
1421
func testEmpty() {
1522
var queue = PriorityQueue<Message>(sort: <)
1623
XCTAssertTrue(queue.isEmpty)

Priority Queue/Tests/Tests.xcodeproj/project.pbxproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@
180180
ONLY_ACTIVE_ARCH = YES;
181181
SDKROOT = macosx;
182182
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
183+
SWIFT_VERSION = 4.0;
183184
};
184185
name = Debug;
185186
};
@@ -219,6 +220,7 @@
219220
MTL_ENABLE_DEBUG_INFO = NO;
220221
SDKROOT = macosx;
221222
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
223+
SWIFT_VERSION = 4.0;
222224
};
223225
name = Release;
224226
};
@@ -230,7 +232,7 @@
230232
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
231233
PRODUCT_BUNDLE_IDENTIFIER = swift.algorithm.club.Tests;
232234
PRODUCT_NAME = "$(TARGET_NAME)";
233-
SWIFT_VERSION = 3.0;
235+
SWIFT_VERSION = 4.0;
234236
};
235237
name = Debug;
236238
};
@@ -242,7 +244,7 @@
242244
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
243245
PRODUCT_BUNDLE_IDENTIFIER = swift.algorithm.club.Tests;
244246
PRODUCT_NAME = "$(TARGET_NAME)";
245-
SWIFT_VERSION = 3.0;
247+
SWIFT_VERSION = 4.0;
246248
};
247249
name = Release;
248250
};

0 commit comments

Comments
 (0)