Skip to content

Commit c72e175

Browse files
committed
Fix test
1 parent 66ab23f commit c72e175

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/unit/math/opencl/util.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,11 +233,11 @@ T to_vector_if(const T& x, std::size_t N) {
233233

234234
using stan::math::rows;
235235
template <typename T, require_not_container_t<T>* = nullptr>
236-
int rows(const T&) {
236+
int64_t rows(const T&) {
237237
return 1;
238238
}
239239
template <typename T, require_std_vector_t<T>* = nullptr>
240-
int rows(const T& x) {
240+
int64_t rows(const T& x) {
241241
return x.size();
242242
}
243243

0 commit comments

Comments
 (0)