BUG: setSet: use of one-argument constructor. Fixes #566.

This commit is contained in:
mattijs
2017-08-10 18:41:22 +01:00
parent 6d8a09fd63
commit 59b70b04d5
5 changed files with 8 additions and 10 deletions

View File

@ -85,7 +85,7 @@ void writeVTK
vtk::writeFaceSet
(
mesh,
currentSet,
dynamicCast<const faceSet&>(currentSet),
mesh.time().path()/vtkBaseName,
vtk::formatType::LEGACY_BINARY
);
@ -96,7 +96,7 @@ void writeVTK
vtk::writeCellSetFaces
(
mesh,
currentSet,
dynamicCast<const cellSet&>(currentSet),
mesh.time().path()/vtkBaseName,
vtk::formatType::LEGACY_BINARY
);
@ -106,7 +106,7 @@ void writeVTK
vtk::writePointSet
(
mesh,
currentSet,
dynamicCast<const pointSet&>(currentSet),
mesh.time().path()/vtkBaseName,
vtk::formatType::LEGACY_BINARY
);