Skip to content

Commit 7c7ac79

Browse files
cleanup
1 parent c2d6d7e commit 7c7ac79

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

clang/include/clang/Basic/LangOptions.def

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ LANGOPT(BoundsSafety, 1, 0, NotCompatible, "Bounds safety extension for C")
498498
LANGOPT(EnableLifetimeSafety, 1, 0, NotCompatible, "Experimental lifetime safety analysis for C++")
499499

500500
LANGOPT(PreserveVec3Type, 1, 0, NotCompatible, "Preserve 3-component vector type")
501-
LANGOPT(Reflection , 1, 0, NotCompatible, "Experimental C++26 Reflection")
501+
LANGOPT(Reflection , 1, 0, NotCompatible, "C++26 Reflection")
502502

503503
#undef LANGOPT
504504
#undef ENUM_LANGOPT

clang/include/clang/Driver/Options.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4351,7 +4351,7 @@ def fno_trigraphs : Flag<["-"], "fno-trigraphs">, Group<f_Group>,
43514351
HelpText<"Do not process trigraph sequences">,
43524352
Visibility<[ClangOption, CC1Option]>;
43534353
def funique_source_file_names: Flag<["-"], "funique-source-file-names">, Group<f_Group>,
4354-
HelpText<"Allow the compiler to assume that each translation unit has a unique "
4354+
HelpText<"Allow the compiler to assume that each translation unit has a unique "
43554355
"source file identifier (see -funique-source-file-identifier) at link time">;
43564356
def fno_unique_source_file_names: Flag<["-"], "fno-unique-source-file-names">;
43574357
def unique_source_file_identifier_EQ: Joined<["-"], "funique-source-file-identifier=">, Group<f_Group>,

clang/include/clang/Parse/Parser.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1548,7 +1548,7 @@ class Parser : public CodeCompletionHandler {
15481548
// 'instancetype'
15491549
DSC_condition, // condition declaration context
15501550
DSC_association, // A _Generic selection expression's type association
1551-
DSC_new // C++ new expression
1551+
DSC_new, // C++ new expression
15521552
};
15531553

15541554
/// Is this a context in which we are parsing just a type-specifier (or
@@ -7683,7 +7683,7 @@ class Parser : public CodeCompletionHandler {
76837683
/// [GNU] asm-clobbers:
76847684
/// asm-string-literal
76857685
/// asm-clobbers ',' asm-string-literal
7686-
/// \endverbatim
7686+
/// \endverbatim
76877687
///
76887688
StmtResult ParseAsmStatement(bool &msAsm);
76897689

0 commit comments

Comments
 (0)