From 9b15c54c8cab8b8b9a0af495b2791adc12863a83 Mon Sep 17 00:00:00 2001 From: gongdahan Date: Tue, 8 Oct 2024 11:09:42 +0800 Subject: [PATCH] Fix a wrong macro for tdualquat ctor --- glm/gtx/dual_quaternion.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/gtx/dual_quaternion.hpp b/glm/gtx/dual_quaternion.hpp index 04a60706..472667d4 100644 --- a/glm/gtx/dual_quaternion.hpp +++ b/glm/gtx/dual_quaternion.hpp @@ -54,7 +54,7 @@ namespace glm // -- Implicit basic constructors -- - GLM_DEFAULTED_FUNC_DECL GLM_CONSTEXPR tdualquat() GLM_DEFAULT; + GLM_DEFAULTED_DEFAULT_CTOR_DECL GLM_CONSTEXPR tdualquat() GLM_DEFAULT_CTOR; GLM_DEFAULTED_FUNC_DECL GLM_CONSTEXPR tdualquat(tdualquat const& d) GLM_DEFAULT; template GLM_CTOR_DECL tdualquat(tdualquat const& d);