diff --git a/src/processor_motion.h b/src/processor_motion.h
index 5543cad56dcbe31080090dc9a89ff1b6c7e265a8..8a23526fd58861ed3217aa5e56be7a6264bd9249 100644
--- a/src/processor_motion.h
+++ b/src/processor_motion.h
@@ -202,7 +202,7 @@ class ProcessorMotion : public ProcessorBase
          *   - initializing counters, flags, or any derived variables
          *   - initializing algorithms needed for processing the derived data
          */
-        virtual void preProcess() { };
+        virtual void preProcess() { }
 
         /** Post-process
          *
@@ -214,7 +214,7 @@ class ProcessorMotion : public ProcessorBase
          *   - resetting and/or clearing variables and/or algorithms at the end of processing
          *   - drawing / printing / logging the results of the processing
          */
-        virtual void postProcess() { };
+        virtual void postProcess() { }
 
 
         // These are the pure virtual functions doing the mathematics