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-lecture
Commits
a1beda73
Commit
a1beda73
authored
Apr 05, 2021
by
Timo Koch
Browse files
[test] Fix a compiler warning about range-based-for element type
parent
b9c716b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
lecture/mm/naplinfiltration/spatialparams.hh
View file @
a1beda73
...
...
@@ -100,7 +100,7 @@ public:
auto
krw
=
swRange
;
auto
krn
=
swRange
;
auto
krg
=
swRange
;
for
(
const
auto
&
[
i
,
sw
]
:
enumerate
(
swRange
))
for
(
const
auto
[
i
,
sw
]
:
enumerate
(
swRange
))
{
const
Scalar
sn
=
1.0
-
sg
-
sw
;
krw
[
i
]
=
threePhasePcKrSw_
.
krw
(
sw
,
sn
);
...
...
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