From ca0851d136f042c82a9ec972c7db9271318ea2cc Mon Sep 17 00:00:00 2001 From: Jeremie Deray <jeremie.deray@pal-robotics.com> Date: Fri, 11 Aug 2017 12:20:46 +0200 Subject: [PATCH] fix warning ordering init --- src/processor_base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/processor_base.h b/src/processor_base.h index fb828e8c4..f909104cb 100644 --- a/src/processor_base.h +++ b/src/processor_base.h @@ -33,8 +33,8 @@ class ProcessorBase : public NodeBase, public std::enable_shared_from_this<Proce private: SensorBaseWPtr sensor_ptr_; - static unsigned int processor_id_count_; bool is_removing_; ///< A flag for safely removing nodes from the Wolf tree. See remove(). + static unsigned int processor_id_count_; public: ProcessorBase(const std::string& _type, const Scalar& _time_tolerance = 0); -- GitLab