Skip to content

Commit

Permalink
fix some mistakes in method declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
alvls committed Oct 24, 2022
1 parent cda8491 commit 004a33d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/tmatrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ class TDynamicVector
TDynamicVector operator+(T val)
{
}
TDynamicVector operator-(double val)
TDynamicVector operator-(T val)
{
}
TDynamicVector operator*(double val)
TDynamicVector operator*(T val)
{
}

Expand Down Expand Up @@ -142,7 +142,7 @@ class TDynamicMatrix : private TDynamicVector<TDynamicVector<T>>
}

// матрично-скалярные операции
TDynamicVector<T> operator*(const T& val)
TDynamicMatrix operator*(const T& val)
{
}

Expand Down

0 comments on commit 004a33d

Please sign in to comment.