We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d6e5e4 commit 7e00df2Copy full SHA for 7e00df2
1 file changed
stan/math/prim/meta/is_tuple.hpp
@@ -64,8 +64,8 @@ inline constexpr bool is_tuple_v = math::is_tuple_v<T>;
64
*/
65
template <typename T, std::size_t N>
66
struct is_tuple_of_size
67
- : std::bool_constant<is_tuple_v<T>
68
- && std::tuple_size_v<std::decay_t<T>> == N> {};
+ : std::bool_constant<
+ is_tuple_v<T> && std::tuple_size_v<std::decay_t<T>> == N> {};
69
70
71
inline constexpr bool is_tuple_of_size_v = is_tuple_of_size<T, N>::value;
0 commit comments