Skip to content

Commit

Permalink
fix definition of require_not_arena_matrix_t
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveBronder committed Apr 18, 2024
1 parent 6a71cfb commit 1e906d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stan/math/prim/meta/is_arena_matrix.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ using require_arena_matrix_t = require_t<is_arena_matrix<std::decay_t<T>>>;
/*! \brief Require type does not satisfy @ref is_arena_matrix */
/*! @tparam T the type to check */
template <typename T>
using require_not_arena_matrix_t = require_t<is_arena_matrix<std::decay_t<T>>>;
using require_not_arena_matrix_t = require_t<bool_constant<!is_arena_matrix<std::decay_t<T>>::value>>;
/*! @} */


Expand Down

0 comments on commit 1e906d9

Please sign in to comment.