Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
f73a8e61
Commit
f73a8e61
authored
May 21, 2016
by
Henry Weller
Browse files
functionObjectList: Filter unnecessary warning from new 'libs' entry
parent
3eec5854
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/OpenFOAM/db/functionObjects/functionObjectList/functionObjectList.C
View file @
f73a8e61
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment