mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
fix indentation
This commit is contained in:
@ -78,10 +78,7 @@ int main(int argc, char *argv[])
|
|||||||
Serr<< "slave sending to master "
|
Serr<< "slave sending to master "
|
||||||
<< Pstream::masterNo() << endl;
|
<< Pstream::masterNo() << endl;
|
||||||
|
|
||||||
OPstream toMaster
|
OPstream toMaster(Pstream::blocking, Pstream::masterNo());
|
||||||
(
|
|
||||||
Pstream::blocking, Pstream::masterNo(), IOstream::ASCII
|
|
||||||
);
|
|
||||||
|
|
||||||
FixedList<label, 2> list3;
|
FixedList<label, 2> list3;
|
||||||
list3[0] = 0;
|
list3[0] = 0;
|
||||||
@ -98,10 +95,7 @@ int main(int argc, char *argv[])
|
|||||||
)
|
)
|
||||||
{
|
{
|
||||||
Serr << "master receiving from slave " << slave << endl;
|
Serr << "master receiving from slave " << slave << endl;
|
||||||
IPstream fromSlave
|
IPstream fromSlave(Pstream::blocking, slave);
|
||||||
(
|
|
||||||
Pstream::blocking, slave, IOstream::ASCII
|
|
||||||
);
|
|
||||||
FixedList<label, 2> list3(fromSlave);
|
FixedList<label, 2> list3(fromSlave);
|
||||||
|
|
||||||
Serr<< list3 << endl;
|
Serr<< list3 << endl;
|
||||||
|
|||||||
Reference in New Issue
Block a user