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
180f2642
Commit
180f2642
authored
Feb 07, 2022
by
Praetorius, Simon
Browse files
Merge branch 'issue/remove-several-warnings' into 'master'
remove several warnings See merge request
!11
parents
75f03303
2d5e3aa6
Pipeline
#7892
passed with stage
in 16 minutes and 49 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
dune/gmsh4/gmsh4reader.hh
View file @
180f2642
...
...
@@ -142,7 +142,7 @@ namespace Dune
return
result
;
}
void
readString
(
std
::
istream
&
stream
,
std
::
string
&
name
)
void
readString
(
std
::
istream
&
/*
stream
*/
,
std
::
string
&
name
)
{
DUNE_THROW
(
Dune
::
NotImplemented
,
"Method readString() not yet implemented"
);
name
=
""
;
...
...
dune/gmsh4/gmsh4reader.impl.hh
View file @
180f2642
...
...
@@ -1179,43 +1179,43 @@ void Gmsh4Reader<G,C,S>::readElementsBinary (std::ifstream& input)
template
<
class
G
,
class
C
,
class
S
>
void
Gmsh4Reader
<
G
,
C
,
S
>::
readPeriodic
(
std
::
ifstream
&
input
)
void
Gmsh4Reader
<
G
,
C
,
S
>::
readPeriodic
(
std
::
ifstream
&
/*
input
*/
)
{
DUNE_THROW
(
Dune
::
NotImplemented
,
"readPeriodic() is not yet implemented."
);
}
template
<
class
G
,
class
C
,
class
S
>
void
Gmsh4Reader
<
G
,
C
,
S
>::
readGhostElements
(
std
::
ifstream
&
input
)
void
Gmsh4Reader
<
G
,
C
,
S
>::
readGhostElements
(
std
::
ifstream
&
/*
input
*/
)
{
DUNE_THROW
(
Dune
::
NotImplemented
,
"readPeriodic() is not yet implemented."
);
}
template
<
class
G
,
class
C
,
class
S
>
void
Gmsh4Reader
<
G
,
C
,
S
>::
readParametrization
(
std
::
ifstream
&
input
)
void
Gmsh4Reader
<
G
,
C
,
S
>::
readParametrization
(
std
::
ifstream
&
/*
input
*/
)
{
DUNE_THROW
(
Dune
::
NotImplemented
,
"readParametrization() is not yet implemented."
);
}
template
<
class
G
,
class
C
,
class
S
>
void
Gmsh4Reader
<
G
,
C
,
S
>::
readNodeData
(
std
::
ifstream
&
input
)
void
Gmsh4Reader
<
G
,
C
,
S
>::
readNodeData
(
std
::
ifstream
&
/*
input
*/
)
{
DUNE_THROW
(
Dune
::
NotImplemented
,
"readNodeData() is not yet implemented."
);
}
template
<
class
G
,
class
C
,
class
S
>
void
Gmsh4Reader
<
G
,
C
,
S
>::
readElementData
(
std
::
ifstream
&
input
)
void
Gmsh4Reader
<
G
,
C
,
S
>::
readElementData
(
std
::
ifstream
&
/*
input
*/
)
{
DUNE_THROW
(
Dune
::
NotImplemented
,
"readElementData() is not yet implemented."
);
}
template
<
class
G
,
class
C
,
class
S
>
void
Gmsh4Reader
<
G
,
C
,
S
>::
readElementNodeData
(
std
::
ifstream
&
input
)
void
Gmsh4Reader
<
G
,
C
,
S
>::
readElementNodeData
(
std
::
ifstream
&
/*
input
*/
)
{
DUNE_THROW
(
Dune
::
NotImplemented
,
"readElementNodeData() is not yet implemented."
);
}
template
<
class
G
,
class
C
,
class
S
>
void
Gmsh4Reader
<
G
,
C
,
S
>::
readInterpolationScheme
(
std
::
ifstream
&
input
)
void
Gmsh4Reader
<
G
,
C
,
S
>::
readInterpolationScheme
(
std
::
ifstream
&
/*
input
*/
)
{
DUNE_THROW
(
Dune
::
NotImplemented
,
"readInterpolationScheme() is not yet implemented."
);
}
...
...
dune/gmsh4/gridcreators/continuousgridcreator.hh
View file @
180f2642
...
...
@@ -54,10 +54,10 @@ namespace Dune
}
template
<
class
ElementAttributes
,
class
BoundaryEntities
>
void
insertElementsImpl
(
std
::
size_t
numElements
,
std
::
pair
<
std
::
size_t
,
std
::
size_t
>
elementTagRange
,
void
insertElementsImpl
(
std
::
size_t
/*
numElements
*/
,
std
::
pair
<
std
::
size_t
,
std
::
size_t
>
/*
elementTagRange
*/
,
std
::
vector
<
ElementAttributes
>
const
&
entityBlocks
,
BoundaryEntities
const
&
boundaryEntities
)
BoundaryEntities
const
&
/*
boundaryEntities
*/
)
{
std
::
vector
<
unsigned
int
>
connectivity
;
std
::
size_t
cornerIndex
=
0
;
...
...
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