mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
functionObjectList: Filter unnecessary warning from new 'libs' entry
This commit is contained in:
@ -301,9 +301,13 @@ bool Foam::functionObjectList::read()
|
|||||||
const word& key = iter().keyword();
|
const word& key = iter().keyword();
|
||||||
|
|
||||||
if (!iter().isDict())
|
if (!iter().isDict())
|
||||||
|
{
|
||||||
|
if (key != "libs")
|
||||||
{
|
{
|
||||||
IOWarningInFunction(parentDict_)
|
IOWarningInFunction(parentDict_)
|
||||||
<< "Entry " << key << " is not a dictionary" << endl;
|
<< "Entry " << key << " is not a dictionary" << endl;
|
||||||
|
}
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user