Skip to content
Snippets Groups Projects
Commit 868d6dd7 authored by Mark OLESEN's avatar Mark OLESEN
Browse files

BUG: VTK write pointSet fails in parallel (fixes #2773)

- de-referenced autoPtr with () instead of ref() will fail on
  non-master ranks.
parent f8e05934
Branches
Tags
No related merge requests found
...@@ -155,7 +155,7 @@ bool Foam::vtk::writePointSet ...@@ -155,7 +155,7 @@ bool Foam::vtk::writePointSet
if (parallel) if (parallel)
{ {
vtk::writeListParallel(format(), mesh.points(), pointLabels); vtk::writeListParallel(format.ref(), mesh.points(), pointLabels);
} }
else else
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment