mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
COMP: namespace qualify min/max functions (#3348)
FIX: missing patch face index writeFields (#3347)
This commit is contained in:
@ -295,7 +295,8 @@ void subsetTopoSets
|
||||
|
||||
Info<< "Subsetting " << set.type() << " " << set.name() << endl;
|
||||
|
||||
labelHashSet subset(2*min(set.size(), map.size()));
|
||||
labelHashSet subset;
|
||||
subset.reserve(Foam::min(set.size(), map.size()));
|
||||
|
||||
// Map the data
|
||||
forAll(map, i)
|
||||
|
||||
Reference in New Issue
Block a user