mirror of
https://github.com/g-truc/glm.git
synced 2025-04-05 21:45:02 +00:00
Fixed build
This commit is contained in:
parent
33e3243779
commit
daaf86dcef
2 changed files with 5 additions and 5 deletions
|
@ -295,12 +295,12 @@ namespace glm
|
|||
|
||||
// -- Is type --
|
||||
|
||||
template <typename T, precision P, template <typename, precision> class genType>
|
||||
template <typename T, precision P>
|
||||
struct type<T, P, tdualquat>
|
||||
{
|
||||
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
|
||||
|
||||
|
|
|
@ -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<typename T, precision P>
|
||||
|
|
Loading…
Add table
Reference in a new issue