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:
@ -85,12 +85,12 @@ void writeBytes(char* start, int nBytes)
|
||||
// Debug: write wall flags data
|
||||
void writeWallFlags(Ostream& os, label cellI, const labelList& wallFlags)
|
||||
{
|
||||
os << "cell " << cellI << " wallsFlags:";
|
||||
os << "cell " << cellI << " wallsFlags:";
|
||||
forAll(wallFlags, wallFaceI)
|
||||
{
|
||||
os << wallFlags[wallFaceI] << " ";
|
||||
os << wallFlags[wallFaceI] << ' ';
|
||||
}
|
||||
os << endl;
|
||||
os << endl;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user