mirror of
https://github.com/boostorg/qvm.git
synced 2026-01-19 04:22:16 +00:00
Fix for issue 54
This commit is contained in:
@@ -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>
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
} }
|
||||
|
||||
Reference in New Issue
Block a user