[clang] [CUDA][HIP] Fix overriding of constexpr virtual function (PR #121986)

via cfe-commits cfe-commits at lists.llvm.org
Tue Jan 7 13:35:21 PST 2025


================
@@ -1309,6 +1309,16 @@ Sema::CheckOverload(Scope *S, FunctionDecl *New, const LookupResult &Old,
   return Ovl_Overload;
 }
 
+template <typename AttrT> static bool hasExplicitAttr(const FunctionDecl *D) {
+  if (!D)
+    return false;
----------------
cor3ntin wrote:

we could just assert D is not null

https://github.com/llvm/llvm-project/pull/121986


More information about the cfe-commits mailing list