We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
clang-format
1 parent e573ffe commit eccc89aCopy full SHA for eccc89a
clang-tools-extra/clang-tidy/readability/RedundantSmartptrGetCheck.cpp
@@ -66,8 +66,8 @@ void registerMatchersForGetArrowStart(MatchFinder *Finder,
66
67
// Make sure we are not missing the known standard types.
68
const auto SmartptrAny = anyOf(knownSmartptr(), QuacksLikeASmartptr);
69
- const auto SmartptrWithDeref =
70
- anyOf(cxxRecordDecl(knownSmartptr(), HasRelevantOps), QuacksLikeASmartptr);
+ const auto SmartptrWithDeref = anyOf(
+ cxxRecordDecl(knownSmartptr(), HasRelevantOps), QuacksLikeASmartptr);
71
72
// Catch 'ptr.get()->Foo()'
73
Finder->addMatcher(
0 commit comments