Skip to content

Commit eccc89a

Browse files
committed
Run clang-format
1 parent e573ffe commit eccc89a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang-tools-extra/clang-tidy/readability/RedundantSmartptrGetCheck.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ void registerMatchersForGetArrowStart(MatchFinder *Finder,
6666

6767
// Make sure we are not missing the known standard types.
6868
const auto SmartptrAny = anyOf(knownSmartptr(), QuacksLikeASmartptr);
69-
const auto SmartptrWithDeref =
70-
anyOf(cxxRecordDecl(knownSmartptr(), HasRelevantOps), QuacksLikeASmartptr);
69+
const auto SmartptrWithDeref = anyOf(
70+
cxxRecordDecl(knownSmartptr(), HasRelevantOps), QuacksLikeASmartptr);
7171

7272
// Catch 'ptr.get()->Foo()'
7373
Finder->addMatcher(

0 commit comments

Comments
 (0)