Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
ladnir committed Jun 11, 2024
1 parent ebf098a commit 8dfb60e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macoro/coro_frame.h
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ namespace macoro
// makes a Proto from the given lambda. The lambda
// should take as input a FrameBase<ReturnType>*
template<typename Promise, typename LambdaType>
inline Frame<LambdaType, Promise>* makeFrame(LambdaType&& l)
inline auto makeFrame(LambdaType&& l)
{
return new Frame<LambdaType, Promise>(std::forward<LambdaType>(l));
}
Expand Down

0 comments on commit 8dfb60e

Please sign in to comment.