From 5703a46e3029b2882c839dbd78c17880f808a6c3 Mon Sep 17 00:00:00 2001 From: Elias Bachaalany Date: Wed, 22 Jan 2025 06:07:35 -0800 Subject: [PATCH] fix --- src/common/utils/function.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/utils/function.hpp b/src/common/utils/function.hpp index dcc087b1..82e4fda0 100644 --- a/src/common/utils/function.hpp +++ b/src/common/utils/function.hpp @@ -15,7 +15,7 @@ namespace utils public: optional_function() = default; - + optional_function(std::function f) : func(std::move(f)) {