From 9a8f784ee44412d978690eed1e5648c0c48b155e Mon Sep 17 00:00:00 2001 From: Arseniy Obolenskiy Date: Thu, 30 Oct 2025 14:53:32 +0100 Subject: [PATCH] Hotfix for clang-tidy remark in modules/task/include/task.hpp --- modules/task/include/task.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/task/include/task.hpp b/modules/task/include/task.hpp index b46cb58ad..5cf19331b 100644 --- a/modules/task/include/task.hpp +++ b/modules/task/include/task.hpp @@ -283,7 +283,7 @@ using TaskPtr = std::shared_ptr>; /// @param in Input to pass to the task constructor. /// @return Shared a pointer to the newly created task. template -std::shared_ptr TaskGetter(InType in) { +std::shared_ptr TaskGetter(const InType &in) { return std::make_shared(in); }