Skip to content

Commit 8c49b88

Browse files
committed
Fix missing namespace qualification.
1 parent de69b9f commit 8c49b88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libs/math/math/StructuredBindings.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ using MatrixTuple_t = typename MatrixTuple<T_matrix>::type;
4545

4646
namespace std {
4747

48-
template <class T_matrix> requires from_matrix_v<T_matrix>
48+
template <class T_matrix> requires ::ad::math::from_matrix_v<T_matrix>
4949
class tuple_size<T_matrix> : public integral_constant<size_t, T_matrix::size_value>
5050
{
5151
};
5252

53-
template <size_t I, class T_matrix> requires from_matrix_v<T_matrix>
53+
template <size_t I, class T_matrix> requires ::ad::math::from_matrix_v<T_matrix>
5454
class tuple_element<I, T_matrix>
5555
: public tuple_element<I, ::ad::math::detail::MatrixTuple_t<T_matrix>>
5656
{

0 commit comments

Comments
 (0)