Skip to content

Commit

Permalink
Qualify this._value in buildArray to work around bug
Browse files Browse the repository at this point in the history
Workaround for Cray/chapel-private#7068.

Signed-off-by: Anna Rift <anna.rift@hpe.com>
  • Loading branch information
arifthpe committed Feb 25, 2025
1 parent 75bf511 commit ad3f523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/internal/ChapelDomain.chpl
Original file line number Diff line number Diff line change
Expand Up @@ -1623,7 +1623,7 @@ module ChapelDomain {
var x = _value.dsiBuildArray(eltType, initElts);
pragma "dont disable remote value forwarding"
proc help() {
_value.add_arr(x);
this._value.add_arr(x);
}
help();

Expand Down

0 comments on commit ad3f523

Please sign in to comment.