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) {
275275 hasType (qualType (anyOf (PairType, lValueReferenceType (
276276 pointee (PairType))))
277277 .bind (PairVarTypeName)),
278- hasInitializer (expr ( ignoringCopyCtorAndImplicitCast (
279- expr ().bind (InitExprName)))))
278+ hasInitializer (ignoringCopyCtorAndImplicitCast (
279+ expr ().bind (InitExprName))))
280280 .bind (PairDeclName)),
281281 hasNextTwoVarDecl (
282282 llvm::SmallVector<ast_matchers::internal::Matcher<VarDecl>>{
@@ -296,8 +296,8 @@ void UseStructuredBindingCheck::registerMatchers(MatchFinder *Finder) {
296296 varDecl (hasType (qualType (anyOf (PairType, lValueReferenceType (
297297 pointee (PairType))))
298298 .bind (PairVarTypeName)),
299- hasInitializer (expr ( ignoringCopyCtorAndImplicitCast (
300- expr ().bind (InitExprName)))))
299+ hasInitializer (ignoringCopyCtorAndImplicitCast (
300+ expr ().bind (InitExprName))))
301301 .bind (PairDeclName)),
302302 hasBody (
303303 compoundStmt (
You can’t perform that action at this time.
0 commit comments