================
@@ -1162,6 +1162,11 @@ class Sema final {
/// CurContext - This is the current declaration context of parsing.
DeclContext *CurContext;
+ SemaOpenACC &OpenACC() {
----------------
Endilll wrote:
I'm not too keen to adhere to our style guide here, as this adds noise for
users on top of already more lengthy notation: this PR made the following usage
`getActions().ActOnOpenACCClause(Kind, ClauseLoc);` to look like this:
`getActions().OpenACC().ActOnClause(Kind, ClauseLoc);`. If we adhere to style
guide, it's going to become
`getActions().getOpenACC().ActOnClause(Kind, ClauseLoc);` without any benefit
for readers and writers of the code.
https://github.com/llvm/llvm-project/pull/84184
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits