Skip to content

Commit

Permalink
fix: for_each_fn.cpp (#4797)
Browse files Browse the repository at this point in the history
  • Loading branch information
leodemoura authored Jul 20, 2024
1 parent 696f70b commit 3477b0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kernel/for_each_fn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ template<bool partial_apps> class for_each_fn {
if (partial_apps)
apply(app_fn(e));
else
apply_fn(e);
apply_fn(app_fn(e));
apply(app_arg(e));
return;
case expr_kind::Lambda: case expr_kind::Pi:
Expand Down

0 comments on commit 3477b0e

Please sign in to comment.