Skip to content

Commit

Permalink
Disable arrays-of-arrays for now
Browse files Browse the repository at this point in the history
---
Signed-off-by: Michael Ferguson <[email protected]>
  • Loading branch information
mppf committed Sep 6, 2024
1 parent 9200137 commit f3a1c28
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/internal/ChapelArray.chpl
Original file line number Diff line number Diff line change
Expand Up @@ -3097,6 +3097,8 @@ module ChapelArray {
rhs._value) {
if dom == rhs.domain &&
dom.distribution == rhs.domain.distribution &&
eltType == rhs.eltType && // note: eltType might have runtime part
!isArrayType(eltType) && // arrays-of-arrays not working yet
!rhs._unowned {
// ask the array implementation to steal the buffer
pragma "no copy" // avoid error about recursion for initCopy
Expand Down

0 comments on commit f3a1c28

Please sign in to comment.