Remove -[no]implicit-objc-with.

Toggling this option causes funny things to happen, and there's no
point in keeping it.

Swift SVN r20565
This commit is contained in:
Doug Gregor
2014-07-25 22:13:46 +00:00
parent e9037bcfa7
commit ff92b5f007
10 changed files with 10 additions and 46 deletions

View File

@@ -420,7 +420,6 @@ mapParsedParameters(Parser &parser,
// If the first parameter of a method or initializer is a keyword argument
// and starts with "with", note that the "with" is implied.
if (!argName.empty() && isFirstParameter && isFirstParameterClause &&
ctx.LangOpts.ImplicitObjCWith &&
(paramContext == Parser::ParameterContextKind::Method ||
paramContext == Parser::ParameterContextKind::Initializer) &&
argName.str().size() > 4 &&