Skip to content

Commit

Permalink
charmxi: Revert use of C++11 in 4fd8c4b
Browse files Browse the repository at this point in the history
The CMake build does not currently support C++11isms in charmxi code
since it does not configure the native compiler.
  • Loading branch information
rbuch committed Jun 21, 2022
1 parent 5e17a44 commit d4d2203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xlat-i/xi-Entry.C
Original file line number Diff line number Diff line change
Expand Up @@ -2460,7 +2460,7 @@ void Entry::genReg(XStr& str) {
str << " " << epIdx(0) << ";\n";
if (isReductionTarget()) str << " " << epIdx(0, true) << ";\n";

const char* ifNot = nullptr;
const char* ifNot = NULL;
if (isCreateHere()) ifNot = "CkArray_IfNotThere_createhere";
else if (isCreateHome()) ifNot = "CkArray_IfNotThere_createhome";

Expand Down

0 comments on commit d4d2203

Please sign in to comment.