Skip to content

Commit 7448877

Browse files
Fix error introduced by renaming lambda (#4012)
1 parent 435a522 commit 7448877

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libtiledbsoma/src/soma/soma_array.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -661,8 +661,8 @@ uint64_t SOMAArray::nnz(bool raise_if_slow) {
661661
return result;
662662
};
663663

664-
non_empty_domains = permutate(non_empty_domains, permutation);
665-
relevant_fragments = permutate(relevant_fragments, permutation);
664+
non_empty_domains = permute(non_empty_domains, permutation);
665+
relevant_fragments = permute(relevant_fragments, permutation);
666666

667667
// After sorting, if the end of a non-empty domain is >= the beginning of
668668
// the next non-empty domain, there is an overlap

0 commit comments

Comments
 (0)