Updated UPstream::commsTypes to use the C++11 enum class

This commit is contained in:
Henry Weller
2017-03-10 19:54:55 +00:00
parent 2b8a55c9e6
commit 1e6c9a0a54
134 changed files with 1012 additions and 686 deletions

View File

@ -456,7 +456,7 @@ bool Foam::functionObjects::streamLine::write()
// to prevent buffering.
mapDistributeBase::distribute
(
Pstream::scheduled,
Pstream::commsTypes::scheduled,
distMap.schedule(),
distMap.constructSize(),
distMap.subMap(),
@ -473,7 +473,7 @@ bool Foam::functionObjects::streamLine::write()
allScalars_[scalarI].shrink();
mapDistributeBase::distribute
(
Pstream::scheduled,
Pstream::commsTypes::scheduled,
distMap.schedule(),
distMap.constructSize(),
distMap.subMap(),
@ -491,7 +491,7 @@ bool Foam::functionObjects::streamLine::write()
allVectors_[vectorI].shrink();
mapDistributeBase::distribute
(
Pstream::scheduled,
Pstream::commsTypes::scheduled,
distMap.schedule(),
distMap.constructSize(),
distMap.subMap(),

View File

@ -616,7 +616,7 @@ bool Foam::functionObjects::wallBoundedStreamLine::write()
allTracks_.shrink();
mapDistributeBase::distribute
(
Pstream::scheduled,
Pstream::commsTypes::scheduled,
distMap.schedule(),
distMap.constructSize(),
distMap.subMap(),
@ -633,7 +633,7 @@ bool Foam::functionObjects::wallBoundedStreamLine::write()
allScalars_[scalarI].shrink();
mapDistributeBase::distribute
(
Pstream::scheduled,
Pstream::commsTypes::scheduled,
distMap.schedule(),
distMap.constructSize(),
distMap.subMap(),
@ -651,7 +651,7 @@ bool Foam::functionObjects::wallBoundedStreamLine::write()
allVectors_[vectorI].shrink();
mapDistributeBase::distribute
(
Pstream::scheduled,
Pstream::commsTypes::scheduled,
distMap.schedule(),
distMap.constructSize(),
distMap.subMap(),