Skip to content
Snippets Groups Projects
Commit c45193cf authored by Tobias Leibner's avatar Tobias Leibner
Browse files

[fmatrix] remove second redundant operator*

parent fa88625b
No related branches found
No related tags found
No related merge requests found
......@@ -129,13 +129,6 @@ public:
return ret;
}
ThisType operator*(const K& scal) const
{
ThisType ret(*this);
ret *= scal;
return ret;
}
template <class Func>
void luDecomposition(ThisType& A, Func func) const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment