Skip to content

Commit

Permalink
Docfix.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed May 17, 2024
1 parent 59fd0ba commit 3e4a811
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/tatami/subset/DelayedSubsetUnique.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,8 @@ class DelayedSubsetUnique : public Matrix<Value_, Index_> {
* If false, the subset is applied to the columns.
* @param check Whether to check `subset` for unique values.
*/
DelayedSubsetUnique(std::shared_ptr<const Matrix<Value_, Index_> > p, SubsetStorage_ subset, bool row, bool check = true) :
my_matrix(std::move(p)), my_subset(std::move(subset)), my_row(row)
DelayedSubsetUnique(std::shared_ptr<const Matrix<Value_, Index_> > matrix, SubsetStorage_ subset, bool row, bool check = true) :
my_matrix(std::move(matrix)), my_subset(std::move(subset)), my_row(row)
{
Index_ fulldim = my_row ? my_matrix->nrow() : my_matrix->ncol();

Expand Down

0 comments on commit 3e4a811

Please sign in to comment.