From e8e2b5d5482c2f1e130f41ec499cb2f5f88dbe0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 24 Feb 2013 14:15:55 +0100 Subject: [PATCH] Math: constexpr internal DualQuaternion constructor. --- src/Math/DualQuaternion.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Math/DualQuaternion.h b/src/Math/DualQuaternion.h index 6ebbd74ea..8000e8480 100644 --- a/src/Math/DualQuaternion.h +++ b/src/Math/DualQuaternion.h @@ -279,7 +279,7 @@ template class DualQuaternion: public Dual> { private: /* Used by Dual operators and dualConjugated() */ - DualQuaternion(const Dual>& other): Dual>(other) {} + inline constexpr DualQuaternion(const Dual>& other): Dual>(other) {} }; /** @debugoperator{Magnum::Math::DualQuaternion} */