mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: postProcess: Clear dictionary to avoid merge warning. See #807.
This commit is contained in:
@ -386,9 +386,11 @@ Foam::autoPtr<Foam::functionObjectList> Foam::functionObjectList::New
|
||||
HashSet<wordRe>& requiredFields
|
||||
)
|
||||
{
|
||||
// Merge any functions from the provided controlDict
|
||||
controlDict.add
|
||||
(
|
||||
dictionaryEntry("functions", controlDict, dictionary::null)
|
||||
dictionaryEntry("functions", controlDict, dictionary::null),
|
||||
true
|
||||
);
|
||||
|
||||
dictionary& functionsDict = controlDict.subDict("functions");
|
||||
|
||||
Reference in New Issue
Block a user