Skip to content

Commit 4b7233a

Browse files
committed
Fix formatting.
1 parent 8bda965 commit 4b7233a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

clang/lib/StaticAnalyzer/Checkers/WebKit/PtrTypesSemantics.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,8 @@ static bool isPtrOfType(const clang::QualType T, Predicate Pred) {
164164
}
165165

166166
bool isSafePtrType(const clang::QualType T) {
167-
return isPtrOfType(T, [](auto Name) {
168-
return isRefType(Name) || isCheckedPtr(Name);
169-
});
167+
return isPtrOfType(
168+
T, [](auto Name) {return isRefType(Name) || isCheckedPtr(Name); });
170169
}
171170

172171
bool isOwnerPtrType(const clang::QualType T) {

0 commit comments

Comments
 (0)