From daaf86dcef931819f83ae2735d08afc3f1aebe83 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Thu, 1 Oct 2015 23:59:20 +0200 Subject: [PATCH] Fixed build --- glm/gtx/dual_quaternion.hpp | 8 ++++---- glm/gtx/quaternion.hpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/glm/gtx/dual_quaternion.hpp b/glm/gtx/dual_quaternion.hpp index 6c7bee9e..02786f47 100644 --- a/glm/gtx/dual_quaternion.hpp +++ b/glm/gtx/dual_quaternion.hpp @@ -295,12 +295,12 @@ namespace glm // -- Is type -- - template class genType> + template struct type { - static bool is_vec = false; - static bool is_mat = false; - static bool is_quat = true; + static bool const is_vec = false; + static bool const is_mat = false; + static bool const is_quat = true; }; } //namespace glm diff --git a/glm/gtx/quaternion.hpp b/glm/gtx/quaternion.hpp index 34d940a1..b34c3be8 100644 --- a/glm/gtx/quaternion.hpp +++ b/glm/gtx/quaternion.hpp @@ -57,7 +57,7 @@ namespace glm /// @addtogroup gtx_quaternion /// @{ - //! Compute a cross product between a quaternion and a vector. + /// Compute a cross product between a quaternion and a vector. /// /// @see gtx_quaternion template