Browse Source

Fixed build

Christophe Riccio 11 years ago
parent
commit
857e7f5075
1 changed files with 2 additions and 2 deletions
  1. 2 2
      glm/gtx/dual_quaternion.inl

+ 2 - 2
glm/gtx/dual_quaternion.inl

@@ -54,7 +54,7 @@ namespace glm
 	template <typename T, precision P>
 	GLM_FUNC_QUALIFIER tdualquat<T, P>::tdualquat
 	(
-		tdualquat<T, P> const & d,
+		tdualquat<T, P> const & d
 	) :
 		real(d.real),
 		dual(d.dual)
@@ -64,7 +64,7 @@ namespace glm
 	template <precision Q>
 	GLM_FUNC_QUALIFIER tdualquat<T, P>::tdualquat
 	(
-		tdualquat<T, Q> const & d,
+		tdualquat<T, Q> const & d
 	) :
 		real(d.real),
 		dual(d.dual)