Skip to content

Commit cfa8d4f

Browse files
committed
fixup! [Clang] Add __type_list_dedup builtin to deduplicate types in template arguments
Fix the clangd tests
1 parent 06261d3 commit cfa8d4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang-tools-extra/clangd/unittests/FindTargetTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ TEST_F(TargetDeclTest, BuiltinTemplates) {
733733
EXPECT_DECLS("TemplateSpecializationTypeLoc", );
734734

735735
Code = R"cpp(
736-
template <template <class...> Templ, class... Types>
736+
template <template <class...> class Templ, class... Types>
737737
using type_list_dedup = [[__type_list_dedup]]<Templ, Types...>;
738738
)cpp";
739739
EXPECT_DECLS("TemplateSpecializationTypeLoc", );

0 commit comments

Comments
 (0)