Skip to content
Snippets Groups Projects
Commit 7d97de2e authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Make destructors virtual

parent 24e630e4
No related branches found
No related tags found
No related merge requests found
Pipeline #11946 passed
...@@ -54,7 +54,7 @@ class LoopClosureBase2d ...@@ -54,7 +54,7 @@ class LoopClosureBase2d
/** \brief Destructor /** \brief Destructor
**/ **/
~LoopClosureBase2d(){}; virtual ~LoopClosureBase2d(){};
/** \brief update the scene struct with keypoints and descriptors /** \brief update the scene struct with keypoints and descriptors
**/ **/
......
...@@ -148,7 +148,7 @@ class LoopClosureFalko : public LoopClosureBase2d, public falkolib::FALKOExtract ...@@ -148,7 +148,7 @@ class LoopClosureFalko : public LoopClosureBase2d, public falkolib::FALKOExtract
/** \brief Destructor /** \brief Destructor
**/ **/
~LoopClosureFalko() {} virtual ~LoopClosureFalko() {}
/** \brief Create and update the scene struct with keypoints and descriptors /** \brief Create and update the scene struct with keypoints and descriptors
**/ **/
......
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