From 874b028e8608a5cb28b2661282d5880b4f78e56b Mon Sep 17 00:00:00 2001 From: Orange Date: Wed, 17 Sep 2025 17:38:17 +0300 Subject: [PATCH] removed unused var --- include/omath/linear_algebra/mat.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/omath/linear_algebra/mat.hpp b/include/omath/linear_algebra/mat.hpp index 096345c..99f8775 100644 --- a/include/omath/linear_algebra/mat.hpp +++ b/include/omath/linear_algebra/mat.hpp @@ -155,8 +155,6 @@ namespace omath constexpr Mat operator*(const Mat& other) const { - Mat result; - if constexpr (StoreType == MatStoreType::ROW_MAJOR) return cache_friendly_multiply_row_major(other); if constexpr (StoreType == MatStoreType::COLUMN_MAJOR)