From d834edbf62ad53d92196916f22012de7045e26f1 Mon Sep 17 00:00:00 2001 From: Pavel Kirienko Date: Mon, 10 Mar 2014 14:08:30 +0400 Subject: [PATCH] Forgotten explicit keyword for timer forwarder constructor --- libuavcan/include/uavcan/timer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libuavcan/include/uavcan/timer.hpp b/libuavcan/include/uavcan/timer.hpp index 743cbd0870..61ed5ec9c4 100644 --- a/libuavcan/include/uavcan/timer.hpp +++ b/libuavcan/include/uavcan/timer.hpp @@ -64,7 +64,7 @@ class TimerEventForwarder : public Timer Callback callback_; public: - TimerEventForwarder(Scheduler& node) + explicit TimerEventForwarder(Scheduler& node) : Timer(node) , callback_() { }