[clang] [clang] Implement CWG2428 "Deprecating a concept" (PR #92295)

via cfe-commits cfe-commits at lists.llvm.org
Thu May 16 05:00:14 PDT 2024


================
@@ -8092,6 +8092,18 @@ void Sema::checkCall(NamedDecl *FDecl, const FunctionProtoType *Proto,
     diagnoseArgDependentDiagnoseIfAttrs(FD, ThisArg, Args, Loc);
 }
 
+void Sema::CheckConstrainedAuto(TypeSourceInfo *TS) {
+  if (getLangOpts().CPlusPlus20) {
----------------
cor3ntin wrote:

Does the check for `getLangOpts().CPlusPlus20` does anything here?

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


More information about the cfe-commits mailing list