From 548b036ad5ec4251f7da37d949a4b175ac1d61f3 Mon Sep 17 00:00:00 2001 From: Brett Date: Fri, 21 Apr 2023 21:35:52 -0400 Subject: [PATCH] move from private to protected --- include/blt/math/vectors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/blt/math/vectors.h b/include/blt/math/vectors.h index 5904102..325f441 100644 --- a/include/blt/math/vectors.h +++ b/include/blt/math/vectors.h @@ -25,7 +25,7 @@ namespace blt { template struct vec { - private: + protected: T elements[size]{}; public: