From 96f6725428b37d2a7204e6d3623f18e98c87541a Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Tue, 22 Aug 2023 10:02:07 +0200 Subject: [PATCH] include/Spectre/Math/Matrix3.inl: make Identity work for all template specializations. not just float. --- include/Spectre/Math/Matrix3.inl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/Spectre/Math/Matrix3.inl b/include/Spectre/Math/Matrix3.inl index 9425c89..8ee358a 100644 --- a/include/Spectre/Math/Matrix3.inl +++ b/include/Spectre/Math/Matrix3.inl @@ -4,8 +4,8 @@ namespace sp { -template <> -Matrix3f Matrix3f::Identity( +template +sp::Matrix3 sp::Matrix3::Identity( 1, 0, 0, 0, 1, 0, 0, 0, 1