mirror of
https://github.com/g-truc/glm.git
synced 2025-04-08 06:43:10 +00:00
Fixed build
This commit is contained in:
parent
e6a890454d
commit
893de94bb1
1 changed files with 4 additions and 4 deletions
|
@ -56,8 +56,8 @@ namespace glm
|
|||
(
|
||||
tdualquat<T, P> const & d,
|
||||
) :
|
||||
real(d.r),
|
||||
dual(d.d)
|
||||
real(d.real),
|
||||
dual(d.dual)
|
||||
{}
|
||||
|
||||
template <typename T, precision P>
|
||||
|
@ -66,8 +66,8 @@ namespace glm
|
|||
(
|
||||
tdualquat<T, Q> const & d,
|
||||
) :
|
||||
real(d.r),
|
||||
dual(d.d)
|
||||
real(d.real),
|
||||
dual(d.dual)
|
||||
{}
|
||||
|
||||
//////////////////////////////////////
|
||||
|
|
Loading…
Add table
Reference in a new issue