[PATCH] D35476: [libOption] - Add flag allowing to print options aliases in help text.

Rafael Avila de Espindola via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 17 09:08:43 PDT 2017


George Rimar via Phabricator <reviews at reviews.llvm.org> writes:

> +namespace {
> +struct OptionInfo {
> +  StringRef HelpText;
> +  std::string Name;
> +};
> +} // namespace

Just replacing the std::pair with this LGTM. Care to commit that and
rebase?

Thanks,
Rafael


More information about the llvm-commits mailing list