From 87cec768e6b8d368c568da2b8520c2e2cbd448a9 Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <dmitri.naumov@ufz.de> Date: Tue, 22 Nov 2016 16:28:53 +0100 Subject: [PATCH] [MeL] Add semicolon after makro. Don't confuse doxygen. --- MeshLib/Vtk/VtkMappedMesh.h | 2 +- MeshLib/Vtk/VtkMappedMeshSource.h | 2 +- MeshLib/Vtk/VtkMappedPropertyVectorTemplate.h | 4 ++-- MeshLib/Vtk/VtkMeshNodalCoordinatesTemplate.h | 3 +-- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/MeshLib/Vtk/VtkMappedMesh.h b/MeshLib/Vtk/VtkMappedMesh.h index a80b8d80963..36720fd95d5 100644 --- a/MeshLib/Vtk/VtkMappedMesh.h +++ b/MeshLib/Vtk/VtkMappedMesh.h @@ -34,7 +34,7 @@ class VtkMappedMeshImpl : public vtkObject public: static VtkMappedMeshImpl *New(); virtual void PrintSelf(std::ostream &os, vtkIndent indent); - vtkTypeMacro(VtkMappedMeshImpl, vtkObject) + vtkTypeMacro(VtkMappedMeshImpl, vtkObject); void SetNodes(std::vector<MeshLib::Node*> const & nodes); void SetElements(std::vector<MeshLib::Element*> const & elements); diff --git a/MeshLib/Vtk/VtkMappedMeshSource.h b/MeshLib/Vtk/VtkMappedMeshSource.h index 4c0082f6a8a..9ca4ed67e7a 100644 --- a/MeshLib/Vtk/VtkMappedMeshSource.h +++ b/MeshLib/Vtk/VtkMappedMeshSource.h @@ -54,7 +54,7 @@ class VtkMappedMeshSource final : public vtkUnstructuredGridAlgorithm { public: static VtkMappedMeshSource *New(); - vtkTypeMacro(VtkMappedMeshSource, vtkUnstructuredGridAlgorithm) + vtkTypeMacro(VtkMappedMeshSource, vtkUnstructuredGridAlgorithm); void PrintSelf(std::ostream &os, vtkIndent indent); /// Sets the mesh. Calling is mandatory diff --git a/MeshLib/Vtk/VtkMappedPropertyVectorTemplate.h b/MeshLib/Vtk/VtkMappedPropertyVectorTemplate.h index 2cef7f9c4a9..8db9c2f5b29 100644 --- a/MeshLib/Vtk/VtkMappedPropertyVectorTemplate.h +++ b/MeshLib/Vtk/VtkMappedPropertyVectorTemplate.h @@ -30,8 +30,8 @@ class VtkMappedPropertyVectorTemplate : vtkMappedDataArray<Scalar> > { public: - vtkMappedDataArrayNewInstanceMacro(VtkMappedPropertyVectorTemplate<Scalar>) - static VtkMappedPropertyVectorTemplate *New(); + vtkMappedDataArrayNewInstanceMacro(VtkMappedPropertyVectorTemplate<Scalar>); + static VtkMappedPropertyVectorTemplate* New(); virtual void PrintSelf(std::ostream &os, vtkIndent indent); // Description: diff --git a/MeshLib/Vtk/VtkMeshNodalCoordinatesTemplate.h b/MeshLib/Vtk/VtkMeshNodalCoordinatesTemplate.h index c9a2b58149a..7186a3bd81c 100644 --- a/MeshLib/Vtk/VtkMeshNodalCoordinatesTemplate.h +++ b/MeshLib/Vtk/VtkMeshNodalCoordinatesTemplate.h @@ -34,8 +34,7 @@ class VtkMeshNodalCoordinatesTemplate: vtkMappedDataArray<Scalar> > { public: - vtkMappedDataArrayNewInstanceMacro( - VtkMeshNodalCoordinatesTemplate<Scalar>) + vtkMappedDataArrayNewInstanceMacro(VtkMeshNodalCoordinatesTemplate<Scalar>); static VtkMeshNodalCoordinatesTemplate *New(); virtual void PrintSelf(std::ostream &os, vtkIndent indent); -- GitLab