File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -922,7 +922,7 @@ std::function<std::vector<array>(const std::vector<array>&)> compile(
922922}
923923
924924std::function<std::vector<array>(const std::vector<array>&)> compile (
925- std::vector<array>( fun)(const std::vector<array>&),
925+ std::vector<array> (* fun)(const std::vector<array>&),
926926 bool shapeless /* = false */ ) {
927927 if (detail::skip_compile ()) {
928928 return fun;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ std::function<std::vector<array>(const std::vector<array>&)> compile(
1414 bool shapeless = false);
1515
1616std::function<std::vector<array>(const std::vector<array>&)> compile (
17- std::vector<array>( fun)(const std::vector<array>&),
17+ std::vector<array> (* fun)(const std::vector<array>&),
1818 bool shapeless = false);
1919
2020// Convert capture-less lambdas to function pointers.
You can’t perform that action at this time.
0 commit comments