mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: fix worst spacing violations for 'os <<' constructions
- accept some violations of the coding guidelines though - perhaps adding a style exception would be simpler.
This commit is contained in:
@ -99,12 +99,12 @@ void print(const char* msg, Ostream& os, const PtrList<GeoField>& flds)
|
||||
{
|
||||
if (flds.size())
|
||||
{
|
||||
os << msg;
|
||||
os << msg;
|
||||
forAll(flds, i)
|
||||
{
|
||||
os<< ' ' << flds[i].name();
|
||||
os << ' ' << flds[i].name();
|
||||
}
|
||||
os << endl;
|
||||
os << endl;
|
||||
}
|
||||
}
|
||||
|
||||
@ -113,9 +113,9 @@ void print(Ostream& os, const wordList& flds)
|
||||
{
|
||||
forAll(flds, i)
|
||||
{
|
||||
os<< ' ' << flds[i];
|
||||
os << ' ' << flds[i];
|
||||
}
|
||||
os << endl;
|
||||
os << endl;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user