Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Nickolas Davis
VTK-m
Commits
6d9c2af7
Commit
6d9c2af7
authored
Apr 15, 2019
by
Nickolas Davis
🥑
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove warning in file due to non-reference exception catch
parent
fbcea82e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
examples/multi_backend/MultiBackend.cxx
examples/multi_backend/MultiBackend.cxx
+1
-1
No files found.
examples/multi_backend/MultiBackend.cxx
View file @
6d9c2af7
...
...
@@ -95,7 +95,7 @@ void multiblock_processing(TaskQueue<vtkm::cont::MultiBlock>& queue)
const
auto
&
field
=
block
.
GetField
(
"Gradients"
,
vtkm
::
cont
::
Field
::
Association
::
POINTS
);
(
void
)
field
;
}
catch
(
vtkm
::
cont
::
ErrorBadValue
)
catch
(
const
vtkm
::
cont
::
ErrorBadValue
&
error
)
{
std
::
cerr
<<
"gradient filter failed!"
<<
std
::
endl
;
break
;
...
...
Write
Preview
Markdown
is supported
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