mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: reduce reliance on stringListOps functions
- findStrings, findMatchingStrings now mostly covered by matching intrinsics in wordRe and wordRes. Add static wordRes match() and matching() variants COMP: remove stringListOps include from objectRegistry.H - was already noted for removal (NOV-2018)
This commit is contained in:
@ -29,7 +29,7 @@ License
|
||||
#include "dictionary.H"
|
||||
#include "Time.H"
|
||||
#include "areaFields.H"
|
||||
#include "stringListOps.H"
|
||||
#include "stringListOps.H" // For stringListOps::foundOp()
|
||||
#include "foamVtkInternalWriter.H"
|
||||
#include "foamVtkPatchWriter.H"
|
||||
#include "foamVtkSeriesWriter.H"
|
||||
@ -304,7 +304,7 @@ bool Foam::functionObjects::vtkWrite::write()
|
||||
// Output fields MUST be specified to avoid accidentally
|
||||
// writing everything. Can still use ".*" for everything
|
||||
|
||||
wordHashSet candidateNames(0);
|
||||
wordHashSet candidateNames;
|
||||
|
||||
if (!selectFields_.empty())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user