aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/ExtractAPI/ExtractAPIConsumer.cpp
diff options
context:
space:
mode:
authorErich Keane <erich.keane@intel.com>2022-05-05 08:35:13 -0700
committerErich Keane <erich.keane@intel.com>2022-05-09 06:29:47 -0700
commita425cac31e2e4cee8e14b7b9a99c8ba17c1ebb52 (patch)
tree02dc158e931646f4222bbbc3e97c63198242802a /clang/lib/ExtractAPI/ExtractAPIConsumer.cpp
parentd38915ffebee403dd1786ad4e165100160529939 (diff)
downloadllvm-a425cac31e2e4cee8e14b7b9a99c8ba17c1ebb52.zip
llvm-a425cac31e2e4cee8e14b7b9a99c8ba17c1ebb52.tar.gz
llvm-a425cac31e2e4cee8e14b7b9a99c8ba17c1ebb52.tar.bz2
"Re-apply 4b6c2cd642 "Deferred Concept Instantiation Implementation""""
This includes a fix for the libc++ issue I ran across with friend declarations not properly being identified as overloads. This reverts commit 45c07db31cc76802a1a2e41bed1ce9c1b8198181.
Diffstat (limited to 'clang/lib/ExtractAPI/ExtractAPIConsumer.cpp')
-rw-r--r--clang/lib/ExtractAPI/ExtractAPIConsumer.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/ExtractAPI/ExtractAPIConsumer.cpp b/clang/lib/ExtractAPI/ExtractAPIConsumer.cpp
index a7b0a1a..4975111 100644
--- a/clang/lib/ExtractAPI/ExtractAPIConsumer.cpp
+++ b/clang/lib/ExtractAPI/ExtractAPIConsumer.cpp
@@ -303,6 +303,7 @@ public:
// Skip templated functions.
switch (Decl->getTemplatedKind()) {
case FunctionDecl::TK_NonTemplate:
+ case FunctionDecl::TK_DependentNonTemplate:
break;
case FunctionDecl::TK_MemberSpecialization:
case FunctionDecl::TK_FunctionTemplateSpecialization: