Skip to content

Commit 36011dd

Browse files
committed
[NFC] 80 chars limit for comment
1 parent a46277e commit 36011dd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clang-tools-extra/clang-tidy/modernize/UseStructuredBindingCheck.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ AST_MATCHER_P2(Stmt, hasNextTwoVarDecl,
149149
return false;
150150
}
151151

152-
/// Matches a CompoundStmt which has two VarDecls
153-
/// matching the inner matcher in the beginning.
152+
/// Matches a CompoundStmt which has two VarDecls matching the inner matcher in
153+
/// the beginning.
154154
AST_MATCHER_P2(CompoundStmt, hasFirstTwoVarDecl,
155155
ast_matchers::internal::Matcher<VarDecl>, InnerMatcher1,
156156
ast_matchers::internal::Matcher<VarDecl>, InnerMatcher2) {
@@ -164,8 +164,8 @@ AST_MATCHER_P2(CompoundStmt, hasFirstTwoVarDecl,
164164
InnerMatcher1, InnerMatcher2, Finder, Builder);
165165
}
166166

167-
/// It's not very common to have specifiers for variables used to decompose
168-
/// a pair, so we ignore these cases.
167+
/// It's not very common to have specifiers for variables used to decompose a
168+
/// pair, so we ignore these cases.
169169
AST_MATCHER(VarDecl, hasAnySpecifiersShouldBeIgnored) {
170170
return Node.isStaticLocal() || Node.isConstexpr() || Node.hasAttrs() ||
171171
Node.isInlineSpecified();

0 commit comments

Comments
 (0)