Skip to content
Snippets Groups Projects
Commit 87cec768 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MeL] Add semicolon after makro.

Don't confuse doxygen.
parent 57119283
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
......@@ -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
......
......@@ -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:
......
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment