Skip to content

Commit

Permalink
make_tt: Fix superfluous parameter in void function without output tuple
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph Schuchart <[email protected]>
  • Loading branch information
devreal committed Oct 14, 2024
1 parent d4b8c3c commit 874e769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ttg/ttg/make_tt.h
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ class CallableWrapTTArgs
func();
this->set_outputs_tls_ptr(old_output_tls_ptr);
} else {
auto ret = func(out);
auto ret = func();
this->set_outputs_tls_ptr(old_output_tls_ptr);
return process_return(std::move(ret), out);
}
Expand Down

0 comments on commit 874e769

Please sign in to comment.