Skip to content

Commit 0d26969

Browse files
committed
Fix formatting.
1 parent a6c4a36 commit 0d26969

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ class ForwardDeclChecker : public Checker<check::ASTDecl<TranslationUnitDecl>> {
129129
return false;
130130
// Find a definition amongst template declarations.
131131
if (auto *Specialization = dyn_cast<ClassTemplateSpecializationDecl>(R)) {
132-
if (auto* S = Specialization->getSpecializedTemplate()) {
132+
if (auto *S = Specialization->getSpecializedTemplate()) {
133133
for (S = S->getMostRecentDecl(); S; S = S->getPreviousDecl()) {
134134
if (S->isThisDeclarationADefinition())
135135
return false;

0 commit comments

Comments
 (0)