[clang] [Clang] Fix name lookup of conversion operators (PR #142945)
Corentin Jabot via cfe-commits
cfe-commits at lists.llvm.org
Wed Jun 11 01:17:27 PDT 2025
================
@@ -2997,7 +2997,7 @@ bool Parser::ParseOpenMPSimpleVarList(
StopBeforeMatch);
} else if (ParseUnqualifiedId(SS, /*ObjectType=*/nullptr,
/*ObjectHadErrors=*/false, false, false,
- false, false, nullptr, Name)) {
+ false, false, false, nullptr, Name)) {
----------------
cor3ntin wrote:
Another option would be to have RAII objects to control some of these values so that we don't have to pass them around?
https://github.com/llvm/llvm-project/pull/142945
More information about the cfe-commits
mailing list