Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux
Commits
eee9b0e4
Commit
eee9b0e4
authored
Jan 25, 2020
by
Timo Koch
Browse files
[params][fix] Consistently ignore defaults in hasKey/hasKeyInGroup
This has been forgotten in bug fix commit
61c2158e
parent
563a9e00
Changes
1
Hide whitespace changes
Inline
Side-by-side
dumux/common/loggingparametertree.hh
View file @
eee9b0e4
...
...
@@ -83,7 +83,7 @@ public:
return
true
;
auto
compoundKey
=
groupPrefix
+
"."
+
key
;
if
(
params_
.
hasKey
(
compoundKey
)
||
defaultParams_
.
hasKey
(
compoundKey
)
)
if
(
params_
.
hasKey
(
compoundKey
))
return
true
;
compoundKey
=
findKeyInGroup
(
params_
,
key
,
groupPrefix
);
...
...
Write
Preview
Supports
Markdown
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