-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Finish removing -swift-version 3 #20409
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Completes <rdar://problem/43101816>.
@swift-ci Please test |
@swift-ci Please test source compatibility |
Build failed |
Build failed |
@@ -153,7 +153,7 @@ class Version { | |||
// List of backward-compatibility versions that we permit passing as | |||
// -swift-version <vers> | |||
static std::array<StringRef, 4> getValidEffectiveVersions() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Array size should be 3 instead of 4
static std::array<StringRef, 4> getValidEffectiveVersions() { | |
static std::array<StringRef, 3> getValidEffectiveVersions() { |
See also #20374 |
Oops, I didn't realize we made the same change here. @tkremenek The only significant difference I see is that I removed the swift3 lit substitutions from lit.cfg, and XFAILd the offending tests. Do you want to take over? |
Yeah I'll take over. |
Thanks Ted! |
Fixes rdar://problem/43101816.