Merge pull request #59740 from hborla/remove-existential-opening-option

[LangOptions] Remove the option to enable/disable implicit existential opening.
This commit is contained in:
Holly Borla
2022-06-30 08:53:13 -07:00
committed by GitHub
11 changed files with 16 additions and 27 deletions

View File

@@ -450,11 +450,6 @@ static bool ParseLangArgs(LangOptions &Opts, ArgList &Args,
Opts.EnableExperimentalConcurrency |=
Args.hasArg(OPT_enable_experimental_concurrency);
Opts.EnableOpenedExistentialTypes =
Args.hasFlag(OPT_enable_experimental_opened_existential_types,
OPT_disable_experimental_opened_existential_types,
true);
Opts.EnableInferPublicSendable |=
Args.hasFlag(OPT_enable_infer_public_concurrent_value,
OPT_disable_infer_public_concurrent_value,