mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
minor tweak for matching MPI types, documentation cosmetics
This commit is contained in:
@ -47,7 +47,7 @@ namespace Foam
|
||||
{
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class OPstream Declaration
|
||||
Class OPstream Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
class OPstream
|
||||
@ -160,7 +160,7 @@ public:
|
||||
void flush()
|
||||
{}
|
||||
|
||||
//- Add '\n' and flush stream
|
||||
//- Add newline and flush stream
|
||||
void endl()
|
||||
{}
|
||||
|
||||
|
||||
@ -48,7 +48,7 @@ namespace Foam
|
||||
{
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class OSstream Declaration
|
||||
Class OSstream Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
class OSstream
|
||||
@ -162,20 +162,20 @@ public:
|
||||
//- Flush stream
|
||||
virtual void flush();
|
||||
|
||||
//- Add '\n' and flush stream
|
||||
//- Add newline and flush stream
|
||||
virtual void endl();
|
||||
|
||||
//- Get width of output field
|
||||
virtual int width() const;
|
||||
|
||||
//- Set width of output field (and return old width)
|
||||
virtual int width(const int w);
|
||||
virtual int width(const int);
|
||||
|
||||
//- Get precision of output field
|
||||
virtual int precision() const;
|
||||
|
||||
//- Set precision of output field (and return old precision)
|
||||
virtual int precision(const int p);
|
||||
virtual int precision(const int);
|
||||
|
||||
|
||||
// Print
|
||||
|
||||
Reference in New Issue
Block a user