STYLE: consistent indentation and template parameters for FixedList

This commit is contained in:
Mark Olesen
2019-01-08 21:50:12 +01:00
parent 14a404170b
commit 907dd6d49f
27 changed files with 480 additions and 489 deletions

View File

@ -120,11 +120,11 @@ namespace vtk
//- Write a list of values.
// The output does not include the payload size.
template<class Type, unsigned Size>
template<class Type, unsigned N>
void writeList
(
vtk::formatter& fmt,
const FixedList<Type, Size>& values
const FixedList<Type, N>& values
);

View File

@ -57,11 +57,11 @@ void Foam::vtk::writeList
}
template<class Type, unsigned Size>
template<class Type, unsigned N>
void Foam::vtk::writeList
(
vtk::formatter& fmt,
const FixedList<Type, Size>& values
const FixedList<Type, N>& values
)
{
for (const Type& val : values)