From 70f97fb20b6c6e69df03fb5659112a5751a04354 Mon Sep 17 00:00:00 2001 From: Borislav Stanimirov <b@ibob.bg> Date: Wed, 4 Dec 2024 13:42:07 +0200 Subject: [PATCH] fix(astl): workaround for clang 15 deduction bug --- astl/include/astl/tuple_util.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/astl/include/astl/tuple_util.hpp b/astl/include/astl/tuple_util.hpp index c9c1c63f..64d80dfd 100644 --- a/astl/include/astl/tuple_util.hpp +++ b/astl/include/astl/tuple_util.hpp @@ -58,6 +58,7 @@ namespace impl { template <typename Func> struct expand_for_each { Func& f; + expand_for_each(Func& f) : f(f) {} template <typename... Args> constexpr void operator()(Args&&... args) { (f(std::forward<Args>(args)), ...);