Merge branch 'master' of github.com-OpenFOAM:OpenFOAM/OpenFOAM-dev

This commit is contained in:
Henry Weller
2022-02-26 09:50:38 +00:00

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -87,15 +87,8 @@ bool Foam::FixedList<T, Size>::operator<(const FixedList<T, Size>& a) const
}
}
if (Size < a.Size)
{
return true;
}
else
{
return false;
}
}
template<class T, unsigned Size>