File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -275,8 +275,8 @@ void UseStructuredBindingCheck::registerMatchers(MatchFinder *Finder) {
275
275
hasType (qualType (anyOf (PairType, lValueReferenceType (
276
276
pointee (PairType))))
277
277
.bind (PairVarTypeName)),
278
- hasInitializer (expr ( ignoringCopyCtorAndImplicitCast (
279
- expr ().bind (InitExprName)))))
278
+ hasInitializer (ignoringCopyCtorAndImplicitCast (
279
+ expr ().bind (InitExprName))))
280
280
.bind (PairDeclName)),
281
281
hasNextTwoVarDecl (
282
282
llvm::SmallVector<ast_matchers::internal::Matcher<VarDecl>>{
@@ -296,8 +296,8 @@ void UseStructuredBindingCheck::registerMatchers(MatchFinder *Finder) {
296
296
varDecl (hasType (qualType (anyOf (PairType, lValueReferenceType (
297
297
pointee (PairType))))
298
298
.bind (PairVarTypeName)),
299
- hasInitializer (expr ( ignoringCopyCtorAndImplicitCast (
300
- expr ().bind (InitExprName)))))
299
+ hasInitializer (ignoringCopyCtorAndImplicitCast (
300
+ expr ().bind (InitExprName))))
301
301
.bind (PairDeclName)),
302
302
hasBody (
303
303
compoundStmt (
You can’t perform that action at this time.
0 commit comments