Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Christian Butz
VTK
Commits
7ffb2af4
Commit
7ffb2af4
authored
Nov 06, 2017
by
David E. DeMarle
Browse files
fixup some not marked override comp warnings
parent
3276be1e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Common/DataModel/Testing/Cxx/TestMappedGridDeepCopy.cxx
View file @
7ffb2af4
...
@@ -56,7 +56,7 @@ public:
...
@@ -56,7 +56,7 @@ public:
protected:
protected:
MappedCellIterator
();
MappedCellIterator
();
~
MappedCellIterator
();
~
MappedCellIterator
()
override
;
virtual
void
ResetToFirstCell
()
override
{
this
->
CellId
=
0
;
}
virtual
void
ResetToFirstCell
()
override
{
this
->
CellId
=
0
;
}
virtual
void
IncrementToNextCell
()
override
{
this
->
CellId
++
;
}
virtual
void
IncrementToNextCell
()
override
{
this
->
CellId
++
;
}
virtual
void
FetchCellType
()
override
;
virtual
void
FetchCellType
()
override
;
...
@@ -185,7 +185,7 @@ public:
...
@@ -185,7 +185,7 @@ public:
protected:
protected:
MappedGridImpl
(){}
MappedGridImpl
(){}
virtual
~
MappedGridImpl
()
{
_grid
->
UnRegister
(
this
);
}
virtual
~
MappedGridImpl
()
override
{
_grid
->
UnRegister
(
this
);
}
private:
private:
vtkUnstructuredGrid
*
_grid
;
vtkUnstructuredGrid
*
_grid
;
...
@@ -309,7 +309,7 @@ protected:
...
@@ -309,7 +309,7 @@ protected:
this
->
SetImplementation
(
ig
);
this
->
SetImplementation
(
ig
);
ig
->
Delete
();
ig
->
Delete
();
}
}
~
MappedGrid
()
{}
~
MappedGrid
()
override
{}
private:
private:
MappedGrid
(
const
MappedGrid
&
)
=
delete
;
MappedGrid
(
const
MappedGrid
&
)
=
delete
;
...
...
IO/XML/Testing/Cxx/TestXMLMappedUnstructuredGridIO.cxx
View file @
7ffb2af4
...
@@ -55,7 +55,7 @@ public:
...
@@ -55,7 +55,7 @@ public:
protected:
protected:
MappedCellIterator
();
MappedCellIterator
();
~
MappedCellIterator
();
~
MappedCellIterator
()
override
;
virtual
void
ResetToFirstCell
()
override
{
this
->
CellId
=
0
;
}
virtual
void
ResetToFirstCell
()
override
{
this
->
CellId
=
0
;
}
virtual
void
IncrementToNextCell
()
override
{
this
->
CellId
++
;
}
virtual
void
IncrementToNextCell
()
override
{
this
->
CellId
++
;
}
virtual
void
FetchCellType
()
override
;
virtual
void
FetchCellType
()
override
;
...
@@ -184,7 +184,7 @@ public:
...
@@ -184,7 +184,7 @@ public:
protected:
protected:
MappedGridImpl
(){}
MappedGridImpl
(){}
virtual
~
MappedGridImpl
()
{
_grid
->
UnRegister
(
this
);
}
virtual
~
MappedGridImpl
()
override
{
_grid
->
UnRegister
(
this
);
}
private:
private:
vtkUnstructuredGrid
*
_grid
;
vtkUnstructuredGrid
*
_grid
;
...
@@ -308,7 +308,7 @@ protected:
...
@@ -308,7 +308,7 @@ protected:
this
->
SetImplementation
(
ig
);
this
->
SetImplementation
(
ig
);
ig
->
Delete
();
ig
->
Delete
();
}
}
~
MappedGrid
()
{}
~
MappedGrid
()
override
{}
private:
private:
MappedGrid
(
const
MappedGrid
&
)
=
delete
;
MappedGrid
(
const
MappedGrid
&
)
=
delete
;
...
...
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