File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -393,7 +393,7 @@ static bool isDestExprFix(const MatchFinder::MatchResult &Result,
393
393
}
394
394
395
395
// If the destination array is the same length as the given length we have to
396
- // increase the capacity by one to create space for the the null terminator.
396
+ // increase the capacity by one to create space for the null terminator.
397
397
static bool isDestCapacityFix (const MatchFinder::MatchResult &Result,
398
398
DiagnosticBuilder &Diag) {
399
399
bool IsOverflows = isDestCapacityOverflows (Result);
Original file line number Diff line number Diff line change @@ -867,7 +867,7 @@ std::string VariableNamer::createIndexName() {
867
867
return OldIndex->getName ();
868
868
}
869
869
870
- // / Determines whether or not the the name \a Symbol conflicts with
870
+ // / Determines whether or not the name \a Symbol conflicts with
871
871
// / language keywords or defined macros. Also checks if the name exists in
872
872
// / LoopContext, any of its parent contexts, or any of its child statements.
873
873
// /
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ class DependencyFinderASTVisitor
145
145
// /
146
146
// / In order to avoid this, this class looks at the container expression
147
147
// / `arr[k]` and decides whether or not it contains a sub-expression declared
148
- // / within the the loop body.
148
+ // / within the loop body.
149
149
bool dependsOnInsideVariable (const clang::Stmt *Body) {
150
150
DependsOnInsideVariable = false ;
151
151
TraverseStmt (const_cast <clang::Stmt *>(Body));
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ void ReplaceAutoPtrCheck::registerMatchers(MatchFinder *Finder) {
114
114
this );
115
115
116
116
// Find ownership transfers via copy construction and assignment.
117
- // AutoPtrOwnershipTransferId is bound to the the part that has to be wrapped
117
+ // AutoPtrOwnershipTransferId is bound to the part that has to be wrapped
118
118
// into std::move().
119
119
// std::auto_ptr<int> i, j;
120
120
// i = j;
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ struct CodeCompleteOptions {
61
61
bool IncludeIneligibleResults = false ;
62
62
63
63
// / Combine overloads into a single completion item where possible.
64
- // / If none, the the implementation may choose an appropriate behavior.
64
+ // / If none, the implementation may choose an appropriate behavior.
65
65
// / (In practice, ClangdLSPServer enables bundling if the client claims
66
66
// / to supports signature help).
67
67
llvm::Optional<bool > BundleOverloads;
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ TEST_F(ObjCLocalizeStringLiteralTest, Test) {
127
127
ExtraArgs.push_back (" -x" );
128
128
ExtraArgs.push_back (" objective-c" );
129
129
130
- // Ensure the the action can be initiated in the string literal.
130
+ // Ensure the action can be initiated in the string literal.
131
131
EXPECT_AVAILABLE (R"( id x = ^[[@[[^"^t^est^"]]]];)" );
132
132
133
133
// Ensure that the action can't be initiated in other places.
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ PROJECT_NUMBER = @PACKAGE_VERSION@
46
46
47
47
PROJECT_BRIEF =
48
48
49
- # With the PROJECT_LOGO tag one can specify an logo or icon that is included in
49
+ # With the PROJECT_LOGO tag one can specify a logo or icon that is included in
50
50
# the documentation. The maximum height of the logo should not exceed 55 pixels
51
51
# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo
52
52
# to the output directory.
You can’t perform that action at this time.
0 commit comments