From b0967e77e8a624edb3b6e4c25965ed27e403e24f Mon Sep 17 00:00:00 2001 From: Ravi Prakash Singh Date: Sun, 6 Feb 2022 20:01:32 +0530 Subject: [PATCH] Fixed compilation issue with mat4_t in C++ --- include/hpml/mat4/template_definitions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/hpml/mat4/template_definitions.h b/include/hpml/mat4/template_definitions.h index 8b8c493..c7f29e0 100644 --- a/include/hpml/mat4/template_definitions.h +++ b/include/hpml/mat4/template_definitions.h @@ -154,7 +154,7 @@ typedef struct mat4_t(T)\ };\ T values[16];\ };\ - T* const data[4];\ + T* data[4];\ } mat4_t(T)