From e164d475cb1a6e0a535020aef0f6a7f7acf3ae26 Mon Sep 17 00:00:00 2001 From: Sergei Shirokov Date: Thu, 4 Apr 2024 19:08:36 +0300 Subject: [PATCH] minor fix --- include/libcyphal/runnable.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libcyphal/runnable.hpp b/include/libcyphal/runnable.hpp index ca0d6cded..15281627f 100644 --- a/include/libcyphal/runnable.hpp +++ b/include/libcyphal/runnable.hpp @@ -14,7 +14,7 @@ namespace libcyphal class IRunnable { public: - virtual void run(TimePoint now) = 0; + virtual void run(const TimePoint now) = 0; protected: virtual ~IRunnable() = default;