Skip to content

Commit

Permalink
fix(astl): workaround for clang 15 deduction bug
Browse files Browse the repository at this point in the history
  • Loading branch information
iboB committed Dec 4, 2024
1 parent e3d2591 commit 70f97fb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions astl/include/astl/tuple_util.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)), ...);
Expand Down

0 comments on commit 70f97fb

Please sign in to comment.