Skip to content

Commit c6bc9c5

Browse files
committed
Fix formatting.
1 parent 62b53c7 commit c6bc9c5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,8 @@ std::optional<bool> isUnchecked(const QualType T) {
209209
return isUnchecked(T->getAsCXXRecordDecl());
210210
}
211211

212-
void RetainTypeChecker::visitTranslationUnitDecl(const TranslationUnitDecl *TUD) {
212+
void RetainTypeChecker::visitTranslationUnitDecl(
213+
const TranslationUnitDecl *TUD) {
213214
IsARCEnabled = TUD->getLangOpts().ObjCAutoRefCount;
214215
}
215216

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,9 @@ std::optional<bool> isUnchecked(const clang::QualType T);
6969
/// An inter-procedural analysis facility that detects CF types with the
7070
/// underlying pointer type.
7171
class RetainTypeChecker {
72-
llvm::DenseSet<const RecordType*> CFPointees;
72+
llvm::DenseSet<const RecordType *> CFPointees;
7373
bool IsARCEnabled{false};
74+
7475
public:
7576
void visitTranslationUnitDecl(const TranslationUnitDecl *);
7677
void visitTypedef(const TypedefDecl *);

0 commit comments

Comments
 (0)