mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: consistent indentation and template parameters for FixedList
This commit is contained in:
@ -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
|
||||
);
|
||||
|
||||
|
||||
|
||||
@ -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)
|
||||
|
||||
Reference in New Issue
Block a user