Skip to content
GitLab
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
d390b708
Commit
d390b708
authored
Jul 26, 2016
by
Timo Koch
Browse files
[fix] These aliases need explicit namespace specifier with e.g. gcc5
parent
152dc9f8
Changes
2
Hide whitespace changes
Inline
Side-by-side
dumux/discretization/box/fvelementgeometry.hh
View file @
d390b708
...
...
@@ -72,8 +72,8 @@ class BoxFVElementGeometry<TypeTag, true>
using
FeLocalBasis
=
typename
FeCache
::
FiniteElementType
::
Traits
::
LocalBasisType
;
using
ReferenceElements
=
typename
Dune
::
ReferenceElements
<
CoordScalar
,
dim
>
;
using
ScvIterator
=
ScvIterator
<
SubControlVolume
,
std
::
vector
<
IndexType
>
,
ThisType
>
;
using
ScvfIterator
=
ScvfIterator
<
SubControlVolumeFace
,
std
::
vector
<
IndexType
>
,
ThisType
>
;
using
ScvIterator
=
Dumux
::
ScvIterator
<
SubControlVolume
,
std
::
vector
<
IndexType
>
,
ThisType
>
;
using
ScvfIterator
=
Dumux
::
ScvfIterator
<
SubControlVolumeFace
,
std
::
vector
<
IndexType
>
,
ThisType
>
;
public:
//! Constructor
...
...
dumux/discretization/cellcentered/tpfa/fvelementgeometry.hh
View file @
d390b708
...
...
@@ -60,8 +60,8 @@ class CCTpfaFVElementGeometry<TypeTag, true>
using
Element
=
typename
GridView
::
template
Codim
<
0
>
::
Entity
;
using
GlobalFVGeometry
=
typename
GET_PROP_TYPE
(
TypeTag
,
GlobalFVGeometry
);
using
ScvIterator
=
ScvIterator
<
SubControlVolume
,
std
::
vector
<
IndexType
>
,
ThisType
>
;
using
ScvfIterator
=
ScvfIterator
<
SubControlVolumeFace
,
std
::
vector
<
IndexType
>
,
ThisType
>
;
using
ScvIterator
=
Dumux
::
ScvIterator
<
SubControlVolume
,
std
::
vector
<
IndexType
>
,
ThisType
>
;
using
ScvfIterator
=
Dumux
::
ScvfIterator
<
SubControlVolumeFace
,
std
::
vector
<
IndexType
>
,
ThisType
>
;
public:
//! Constructor
...
...
@@ -157,8 +157,8 @@ class CCTpfaFVElementGeometry<TypeTag, false>
using
Element
=
typename
GridView
::
template
Codim
<
0
>
::
Entity
;
using
GlobalFVGeometry
=
typename
GET_PROP_TYPE
(
TypeTag
,
GlobalFVGeometry
);
using
ScvIterator
=
ScvIterator
<
SubControlVolume
,
std
::
vector
<
IndexType
>
,
ThisType
>
;
using
ScvfIterator
=
ScvfIterator
<
SubControlVolumeFace
,
std
::
vector
<
IndexType
>
,
ThisType
>
;
using
ScvIterator
=
Dumux
::
ScvIterator
<
SubControlVolume
,
std
::
vector
<
IndexType
>
,
ThisType
>
;
using
ScvfIterator
=
Dumux
::
ScvfIterator
<
SubControlVolumeFace
,
std
::
vector
<
IndexType
>
,
ThisType
>
;
public:
//! Constructor
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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