From: Simon Pilgrim Date: Tue, 30 Apr 2019 10:57:02 +0000 (+0000) Subject: Fix gcc "-Wdangling-else" warnings. NFCI. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f8cb6c3418c7171f4d726d69ba302b7e0f2d23f6;p=clang Fix gcc "-Wdangling-else" warnings. NFCI. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@359550 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/AST/ASTImporterTest.cpp b/unittests/AST/ASTImporterTest.cpp index 07a7c3aea8..7cac2b5703 100644 --- a/unittests/AST/ASTImporterTest.cpp +++ b/unittests/AST/ASTImporterTest.cpp @@ -4137,8 +4137,9 @@ struct RedeclChain : ASTImporterOptionSpecificTestBase { auto *ToD = LastDeclMatcher().match(ToTU, getPattern()); EXPECT_TRUE(ImportedD == ToD); EXPECT_FALSE(ToD->isThisDeclarationADefinition()); - if (auto *ToT = dyn_cast(ToD)) + if (auto *ToT = dyn_cast(ToD)) { EXPECT_TRUE(ToT->getTemplatedDecl()); + } } void TypedTest_DefinitionShouldBeImportedAsADefinition() { @@ -4152,8 +4153,9 @@ struct RedeclChain : ASTImporterOptionSpecificTestBase { EXPECT_EQ(DeclCounter().match(ToTU, getPattern()), 1u); auto *ToD = LastDeclMatcher().match(ToTU, getPattern()); EXPECT_TRUE(ToD->isThisDeclarationADefinition()); - if (auto *ToT = dyn_cast(ToD)) + if (auto *ToT = dyn_cast(ToD)) { EXPECT_TRUE(ToT->getTemplatedDecl()); + } } void TypedTest_ImportPrototypeAfterImportedPrototype() { @@ -4266,8 +4268,9 @@ struct RedeclChain : ASTImporterOptionSpecificTestBase { auto *To0 = FirstDeclMatcher().match(ToTU, getPattern()); EXPECT_TRUE(Imported0 == To0); EXPECT_TRUE(To0->isThisDeclarationADefinition()); - if (auto *ToT0 = dyn_cast(To0)) + if (auto *ToT0 = dyn_cast(To0)) { EXPECT_TRUE(ToT0->getTemplatedDecl()); + } } void TypedTest_ImportDefinitionThenPrototype() {