diff --git a/include/tatami/other/DelayedTranspose.hpp b/include/tatami/other/DelayedTranspose.hpp index 45580832..5a8ba5fc 100644 --- a/include/tatami/other/DelayedTranspose.hpp +++ b/include/tatami/other/DelayedTranspose.hpp @@ -27,10 +27,15 @@ template class DelayedTranspose : public Matrix { public: /** - * @param matrix Pointer to the underlying (pre-transpose) matrix. + * @param matrix Pointer to the matrix to be transposed. */ DelayedTranspose(std::shared_ptr > matrix) : my_matrix(std::move(matrix)) {} + /** + * @param matrix Pointer to the matrix to be transposed. + */ + DelayedTranspose(std::shared_ptr > matrix) : my_matrix(std::move(matrix)) {} + private: std::shared_ptr > my_matrix;