From ef351e68a37fa740ea70d25b96ec45b88d893ad6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20de=20Vill=C3=A8le=20=5BUM=5D?= Date: Mon, 29 Aug 2022 13:19:56 +0200 Subject: [PATCH] Fix GLM_EXT_matrix_common compilation message It was previously printing 'GLM_EXT_matrix_transform is included', which does not match the extension name. --- glm/ext/matrix_common.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/ext/matrix_common.hpp b/glm/ext/matrix_common.hpp index 05c37991..f9a9dabe 100644 --- a/glm/ext/matrix_common.hpp +++ b/glm/ext/matrix_common.hpp @@ -16,7 +16,7 @@ #include "../detail/_fixes.hpp" #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED) -# pragma message("GLM: GLM_EXT_matrix_transform extension included") +# pragma message("GLM: GLM_EXT_matrix_common extension included") #endif namespace glm