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

Make destructors virtual

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