From 578a4e1d32eaf6cc6ff64bb3e3d9d65063567a76 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)