Skip to content
Snippets Groups Projects
Commit 01cdeb76 authored by Jeremie Deray's avatar Jeremie Deray
Browse files

missing virtual destructor IntrinsicsBase

parent 68cfb6cd
No related branches found
No related tags found
1 merge request!127Add ProcessorMotion::processIncomingCapture & Miscellaneous
This commit is part of merge request !127. Comments created here will be created in the context of that merge request.
...@@ -23,8 +23,11 @@ namespace wolf { ...@@ -23,8 +23,11 @@ namespace wolf {
*/ */
struct IntrinsicsBase struct IntrinsicsBase
{ {
std::string type; IntrinsicsBase() = default;
std::string name; virtual ~IntrinsicsBase() = default;
std::string type;
std::string name;
}; };
class SensorBase : public NodeBase, public std::enable_shared_from_this<SensorBase> class SensorBase : public NodeBase, public std::enable_shared_from_this<SensorBase>
......
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