From 9d474be11d71b5ae13490d3d8bd66150765560e3 Mon Sep 17 00:00:00 2001 From: Balazs Benics Date: Wed, 31 Mar 2021 12:47:37 +0200 Subject: [PATCH] [ASTImporter][NFC] Fix duplicated symbols in "Improve test coverage" D99576 introduced a duplicate symbol, now im removing it. Differential Revision: https://reviews.llvm.org/D99576 --- clang/unittests/AST/ASTImporterTest.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/clang/unittests/AST/ASTImporterTest.cpp b/clang/unittests/AST/ASTImporterTest.cpp index cb08fd1..edbc648 100644 --- a/clang/unittests/AST/ASTImporterTest.cpp +++ b/clang/unittests/AST/ASTImporterTest.cpp @@ -3086,7 +3086,6 @@ TEST_P(ASTImporterOptionSpecificTestBase, ImportBitfields) { } struct ImportBlock : ASTImporterOptionSpecificTestBase {}; -const internal::VariadicDynCastAllOfMatcher blockDecl; TEST_P(ImportBlock, ImportBlocksAreUnsupported) { const auto *Code = R"( void test_block__capture_null() { -- 2.7.4