Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-vtk
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
iwr
dune-vtk
Commits
80c0ff52
Commit
80c0ff52
authored
5 years ago
by
Praetorius, Simon
Browse files
Options
Downloads
Patches
Plain Diff
inline function fix
parent
cdc91a18
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dune/vtk/gridcreators/serialgridcreator.hh
+1
-0
1 addition, 0 deletions
dune/vtk/gridcreators/serialgridcreator.hh
dune/vtk/vtkwriterinterface.impl.hh
+3
-3
3 additions, 3 deletions
dune/vtk/vtkwriterinterface.impl.hh
with
4 additions
and
3 deletions
dune/vtk/gridcreators/serialgridcreator.hh
+
1
−
0
View file @
80c0ff52
...
...
@@ -11,6 +11,7 @@
namespace
Dune
{
// create a distributed grid on rank 0. Needs to be load balanced afterwards.
template
<
class
Grid
>
struct
SerialGridCreator
:
public
GridCreatorInterface
<
Grid
,
SerialGridCreator
<
Grid
>>
...
...
This diff is collapsed.
Click to expand it.
dune/vtk/vtkwriterinterface.impl.hh
+
3
−
3
View file @
80c0ff52
...
...
@@ -162,10 +162,10 @@ void VtkWriterInterface<GV,DC>
namespace
Impl
{
template
<
class
T
,
std
::
enable_if_t
<
(
sizeof
(
T
)>
1
),
int
>
=
0
>
T
const
&
printable
(
T
const
&
t
)
{
return
t
;
}
inline
T
const
&
printable
(
T
const
&
t
)
{
return
t
;
}
std
::
int16_t
printable
(
std
::
int8_t
c
)
{
return
std
::
int16_t
(
c
);
}
std
::
uint16_t
printable
(
std
::
uint8_t
c
)
{
return
std
::
uint16_t
(
c
);
}
inline
std
::
int16_t
printable
(
std
::
int8_t
c
)
{
return
std
::
int16_t
(
c
);
}
inline
std
::
uint16_t
printable
(
std
::
uint8_t
c
)
{
return
std
::
uint16_t
(
c
);
}
}
// end namespace Impl
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment