functionObjectList: Filter unnecessary warning from new 'libs' entry
This commit is contained in:
parent
e22c65dd8e
commit
7c6b0e684f
1 changed files with 6 additions and 2 deletions
|
|
@ -302,8 +302,12 @@ bool Foam::functionObjectList::read()
|
|||
|
||||
if (!iter().isDict())
|
||||
{
|
||||
IOWarningInFunction(parentDict_)
|
||||
<< "Entry " << key << " is not a dictionary" << endl;
|
||||
if (key != "libs")
|
||||
{
|
||||
IOWarningInFunction(parentDict_)
|
||||
<< "Entry " << key << " is not a dictionary" << endl;
|
||||
}
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue