mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: remove 'special purpose' minMaxOp (#3326)
- replace with plusOp for reductions. The old use didn't necessarily work
well with compiler resolution in all cases.
Simplify to use plusOp (and removed the old version).
[Does not affect very much code...]
COMP: incorrect include ordering for GeometricFieldFunctions
- header was included after the template code
REGRESSION: combineAllGather mapped to incorrect method (81fa7d08ee)
STYLE: use UPstream::commWarn(...) setter method
This commit is contained in:
@ -75,7 +75,7 @@ void Foam::binModels::singleDirectionUniformBin::initialise()
|
||||
}
|
||||
|
||||
// Globally consistent
|
||||
reduce(geomLimits, minMaxOp<scalar>());
|
||||
reduce(geomLimits, sumOp<scalarMinMax>());
|
||||
|
||||
if (!geomLimits.good())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user