Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
iwr
dune-gmsh4
Commits
b9fab896
Commit
b9fab896
authored
Jul 02, 2021
by
Praetorius, Simon
Browse files
Add changes to LagrangeGridCreator to suppress deprecation warning
parent
bfe11265
Pipeline
#6680
passed with stage
in 7 minutes and 13 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
dune/gmsh4/utility/lagrangepoints.impl.hh
View file @
b9fab896
...
...
@@ -267,7 +267,11 @@ template <class K>
template
<
class
Points
>
void
LagrangePointSetBuilder
<
K
,
3
>::
operator
()
(
GeometryType
gt
,
unsigned
int
order
,
Points
&
points
)
const
{
#if DUNE_VERSION_LT(DUNE_LOCALFUNCTIONS,2,8)
std
::
size_t
nPoints
=
numLagrangePoints
(
gt
.
id
(),
dim
,
order
);
#else
std
::
size_t
nPoints
=
numLagrangePoints
(
gt
,
order
);
#endif
if
(
gt
.
isTetrahedron
())
buildTetra
(
nPoints
,
order
,
points
);
...
...
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