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
a691e5ea
Commit
a691e5ea
authored
Dec 16, 2017
by
Bernd Flemisch
Committed by
Timo Koch
Dec 16, 2017
Browse files
[freeflow] replace typedef by using
parent
704db3b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
dumux/freeflow/navierstokes/model.hh
View file @
a691e5ea
...
...
@@ -98,10 +98,10 @@
*/
SET_PROP
(
NavierStokes
,
FluidState
){
private:
typedef
typename
GET_PROP_TYPE
(
TypeTag
,
Scalar
)
Scalar
;
typedef
typename
GET_PROP_TYPE
(
TypeTag
,
FluidSystem
)
FluidSystem
;
using
Scalar
=
typename
GET_PROP_TYPE
(
TypeTag
,
Scalar
);
using
FluidSystem
=
typename
GET_PROP_TYPE
(
TypeTag
,
FluidSystem
);
public:
type
def
Dumux
::
ImmiscibleFluidState
<
Scalar
,
FluidSystem
>
type
;
using
type
=
Dumux
::
ImmiscibleFluidState
<
Scalar
,
FluidSystem
>
;
};
//! The local residual function
...
...
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