Skip to content

Commit

Permalink
Fix for issue 54
Browse files Browse the repository at this point in the history
  • Loading branch information
zajo committed Sep 20, 2024
1 parent 69fad48 commit c4b9c06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/boost/qvm/quat_traits.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ typename enable_if_c<
void>::type
write_quat_element_idx( int i, Q & q, typename quat_traits<Q>::scalar_type s )
{
quat_traits<Q>::template write_element_idx(i, q) = s;
quat_traits<Q>::write_element_idx(i, q) = s;
}

template <class Q>
Expand All @@ -89,7 +89,7 @@ typename enable_if_c<
void>::type
write_vec_element_idx( int i, Q & q, typename quat_traits<Q>::scalar_type s )
{
quat_traits<Q>::template write_element_idx(i, q, s);
quat_traits<Q>::write_element_idx(i, q, s);
}

} }
Expand Down

0 comments on commit c4b9c06

Please sign in to comment.