From 8f225c5f8e23059944041416219d304c4f2125ef Mon Sep 17 00:00:00 2001 From: Orange Date: Sun, 9 Nov 2025 23:23:13 +0300 Subject: [PATCH] forgot keyname --- include/omath/collision/mesh_collider.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/omath/collision/mesh_collider.hpp b/include/omath/collision/mesh_collider.hpp index 14fc505..adafab3 100644 --- a/include/omath/collision/mesh_collider.hpp +++ b/include/omath/collision/mesh_collider.hpp @@ -11,7 +11,7 @@ namespace omath::collision class MeshCollider { public: - using NumericType = MeshType::NumericType; + using NumericType = typename MeshType::NumericType; using VertexType = Vector3; explicit MeshCollider(MeshType mesh): m_mesh(std::move(mesh))