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-vtk
Commits
cabaf8ac
Commit
cabaf8ac
authored
Dec 14, 2020
by
Praetorius, Simon
Browse files
Correct error message in mapDataTypes
parent
6327d214
Changes
1
Hide whitespace changes
Inline
Side-by-side
dune/vtk/types.hh
View file @
cabaf8ac
...
@@ -108,7 +108,7 @@ namespace Dune
...
@@ -108,7 +108,7 @@ namespace Dune
case
FLOAT32
:
caller
(
MetaType
<
float
>
{});
break
;
case
FLOAT32
:
caller
(
MetaType
<
float
>
{});
break
;
case
FLOAT64
:
caller
(
MetaType
<
double
>
{});
break
;
case
FLOAT64
:
caller
(
MetaType
<
double
>
{});
break
;
default:
default:
VTK_ASSERT_MSG
(
false
,
"Unsupported type "
<<
to_string
(
t
));
VTK_ASSERT_MSG
(
false
,
"Unsupported type "
+
to_string
(
t
));
break
;
break
;
}
}
}
}
...
...
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