From 9857435df249ee1db97166f09b0cb701c43a6ca9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Joan=20Sol=C3=A0?= <jsola@iri.upc.edu>
Date: Wed, 21 Mar 2018 09:50:26 +0100
Subject: [PATCH] Remove virtual from pointer getters

---
 src/processor_motion.h | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/processor_motion.h b/src/processor_motion.h
index 2f88d71a9..3ca6aba0c 100644
--- a/src/processor_motion.h
+++ b/src/processor_motion.h
@@ -123,7 +123,6 @@ class ProcessorMotion : public ProcessorBase
 
         // Instructions to the processor:
 
-        void process2(CaptureBasePtr _incoming_ptr);
         void process(CaptureBasePtr _incoming_ptr);
         virtual void resetDerived();
 
@@ -399,9 +398,9 @@ class ProcessorMotion : public ProcessorBase
         Motion motionZero(const TimeStamp& _ts);
 
     public:
-        virtual CaptureMotionPtr getOriginPtr();
-        virtual CaptureMotionPtr getLastPtr();
-        virtual CaptureMotionPtr getIncomingPtr();
+        CaptureMotionPtr getOriginPtr();
+        CaptureMotionPtr getLastPtr();
+        CaptureMotionPtr getIncomingPtr();
 
 
     protected:
-- 
GitLab