[clang] 9837a1c - [NFC] Add missing spaces in BoolOption for apinotes (#92027)
via cfe-commits
cfe-commits at lists.llvm.org
Mon May 13 23:50:35 PDT 2024
Author: Jacob Lambert
Date: 2024-05-13T23:50:31-07:00
New Revision: 9837a1cb53e94609c005ed44f937a99f24208452
URL: https://github.com/llvm/llvm-project/commit/9837a1cb53e94609c005ed44f937a99f24208452
DIFF: https://github.com/llvm/llvm-project/commit/9837a1cb53e94609c005ed44f937a99f24208452.diff
LOG: [NFC] Add missing spaces in BoolOption for apinotes (#92027)
Added:
Modified:
clang/include/clang/Driver/Options.td
Removed:
################################################################################
diff --git a/clang/include/clang/Driver/Options.td b/clang/include/clang/Driver/Options.td
index ed3f1b8b29810..c9d8a1f50fecf 100644
--- a/clang/include/clang/Driver/Options.td
+++ b/clang/include/clang/Driver/Options.td
@@ -1858,13 +1858,13 @@ defm apinotes : BoolOption<"f", "apinotes",
LangOpts<"APINotes">, DefaultFalse,
PosFlag<SetTrue, [], [ClangOption], "Enable">,
NegFlag<SetFalse, [], [ClangOption], "Disable">,
- BothFlags<[], [ClangOption, CC1Option], "external API notes support">>,
+ BothFlags<[], [ClangOption, CC1Option], " external API notes support">>,
Group<f_clang_Group>;
defm apinotes_modules : BoolOption<"f", "apinotes-modules",
LangOpts<"APINotesModules">, DefaultFalse,
PosFlag<SetTrue, [], [ClangOption], "Enable">,
NegFlag<SetFalse, [], [ClangOption], "Disable">,
- BothFlags<[], [ClangOption, CC1Option], "module-based external API notes support">>,
+ BothFlags<[], [ClangOption, CC1Option], " module-based external API notes support">>,
Group<f_clang_Group>;
def fapinotes_swift_version : Joined<["-"], "fapinotes-swift-version=">,
Group<f_clang_Group>, Visibility<[ClangOption, CC1Option]>,
More information about the cfe-commits
mailing list