Skip to content

Commit 6d8e795

Browse files
committedOct 26, 2018
Update Bounded Priority Queue to Swift 4.2
1 parent 35dcda0 commit 6d8e795

File tree

5 files changed

+20
-9
lines changed

5 files changed

+20
-9
lines changed
 

‎Bounded Priority Queue/BoundedPriorityQueue.playground/Contents.swift

-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
// last checked with Xcode 9.0b4
2-
#if swift(>=4.0)
3-
print("Hello, Swift 4!")
4-
#endif
5-
61
struct Message: Comparable, CustomStringConvertible {
72
let name: String
83
let priority: Int
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2-
<playground version='5.0' target-platform='osx'>
2+
<playground version='5.0' target-platform='osx' last-migration='1000'>
33
<timeline fileName='timeline.xctimeline'/>
44
</playground>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
TargetAttributes = {
8787
B80004B21C83E342001FE2D7 = {
8888
CreatedOnToolsVersion = 7.2.1;
89-
LastSwiftMigration = 0820;
89+
LastSwiftMigration = 1000;
9090
};
9191
};
9292
};
@@ -226,7 +226,7 @@
226226
SDKROOT = macosx;
227227
SWIFT_OBJC_BRIDGING_HEADER = "";
228228
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
229-
SWIFT_VERSION = 3.0;
229+
SWIFT_VERSION = 4.2;
230230
};
231231
name = Debug;
232232
};
@@ -269,7 +269,7 @@
269269
PRODUCT_NAME = "$(TARGET_NAME)";
270270
SDKROOT = macosx;
271271
SWIFT_OBJC_BRIDGING_HEADER = "";
272-
SWIFT_VERSION = 3.0;
272+
SWIFT_VERSION = 4.2;
273273
};
274274
name = Release;
275275
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>

0 commit comments

Comments
 (0)
Please sign in to comment.