mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 07:03:25 +00:00
removed unused var
This commit is contained in:
@@ -155,8 +155,6 @@ namespace omath
|
|||||||
constexpr Mat<Rows, OtherColumns, Type, StoreType>
|
constexpr Mat<Rows, OtherColumns, Type, StoreType>
|
||||||
operator*(const Mat<Columns, OtherColumns, Type, StoreType>& other) const
|
operator*(const Mat<Columns, OtherColumns, Type, StoreType>& other) const
|
||||||
{
|
{
|
||||||
Mat<Rows, OtherColumns, Type, StoreType> result;
|
|
||||||
|
|
||||||
if constexpr (StoreType == MatStoreType::ROW_MAJOR)
|
if constexpr (StoreType == MatStoreType::ROW_MAJOR)
|
||||||
return cache_friendly_multiply_row_major(other);
|
return cache_friendly_multiply_row_major(other);
|
||||||
if constexpr (StoreType == MatStoreType::COLUMN_MAJOR)
|
if constexpr (StoreType == MatStoreType::COLUMN_MAJOR)
|
||||||
|
|||||||
Reference in New Issue
Block a user