File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -845,7 +845,9 @@ struct OpenACCPrivateRecipe {
845845
846846 bool isSet () const { return AllocaDecl; }
847847
848- static OpenACCPrivateRecipe Empty () { return OpenACCPrivateRecipe (nullptr ); }
848+ static OpenACCPrivateRecipe Empty () {
849+ return OpenACCPrivateRecipe (/* AllocaDecl=*/ nullptr );
850+ }
849851};
850852
851853class OpenACCPrivateClause final
@@ -905,7 +907,8 @@ struct OpenACCFirstPrivateRecipe {
905907 bool isSet () const { return AllocaDecl; }
906908
907909 static OpenACCFirstPrivateRecipe Empty () {
908- return OpenACCFirstPrivateRecipe (nullptr , nullptr );
910+ return OpenACCFirstPrivateRecipe (/* AllocaDecl=*/ nullptr ,
911+ /* InitFromTemporary=*/ nullptr );
909912 }
910913};
911914
@@ -1283,7 +1286,7 @@ struct OpenACCReductionRecipe {
12831286
12841287 bool isSet () const { return AllocaDecl; }
12851288 static OpenACCReductionRecipe Empty () {
1286- return OpenACCReductionRecipe (nullptr );
1289+ return OpenACCReductionRecipe (/* AllocaDecl= */ nullptr );
12871290 }
12881291};
12891292
You can’t perform that action at this time.
0 commit comments