Formatting
This commit is contained in:
parent
b932507d35
commit
2cfd330426
1 changed files with 5 additions and 1 deletions
|
@ -164,7 +164,11 @@ Foam::simpleMatrix<Type> Foam::operator-
|
||||||
|
|
||||||
|
|
||||||
template<class Type>
|
template<class Type>
|
||||||
Foam::simpleMatrix<Type> Foam::operator*(const scalar s, const simpleMatrix<Type>& m)
|
Foam::simpleMatrix<Type> Foam::operator*
|
||||||
|
(
|
||||||
|
const scalar s,
|
||||||
|
const simpleMatrix<Type>& m
|
||||||
|
)
|
||||||
{
|
{
|
||||||
return simpleMatrix<Type>(s*m.matrix_, s*m.source_);
|
return simpleMatrix<Type>(s*m.matrix_, s*m.source_);
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue