Skip to content

Commit

Permalink
Fix return type of Cython combine (#2314)
Browse files Browse the repository at this point in the history
  • Loading branch information
siyuan0322 committed Dec 7, 2022
1 parent c66dc75 commit 58202f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analytical_engine/frame/cython_app_frame.cc
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ void _Compute(MessageIterator<_MD_TYPE> messages, Vertex<_VD_TYPE, _MD_TYPE>& v,
}

#ifdef _ENABLE_COMBINE
double _Combine(MessageIterator<_MD_TYPE> messages) {
_MD_TYPE _Combine(MessageIterator<_MD_TYPE> messages) {
return Combine(messages);
}
#endif
Expand Down

0 comments on commit 58202f6

Please sign in to comment.