Fixed missing constexpr in quaternion length

This commit is contained in:
Felix Ungman 2013-09-25 10:12:16 +02:00
parent 08c95429fe
commit 9d149d677f

View file

@ -61,7 +61,7 @@ namespace detail
public:
T x, y, z, w;
GLM_FUNC_DECL int length() const;
GLM_FUNC_DECL GLM_CONSTEXPR int length() const;
// Constructors
tquat();