以下 C++ 代码适用于英特尔 TBB。此代码也是由 Flow Graph 生成的。我有 2 个编译错误:
No matching function for call to 'make_edge'
No matching function for call to 'make_edge'
这是带有定义的代码:
function_node< tbb::flow::tuple<char *,char *>, char * > result_reporter(position3_g0, 1, []( const tbb::flow::tuple<char *,char *> & in ) -> char * {...
function_node< char *, char * > sott_target_node(position3_g0, unlimited, []( char *buffer ) -> char * {
这是创建编译错误的 TBB 调用代码
make_edge( result_join, result_reporter);
make_edge( sott_target_node, input_port< 2 >( result_join ));
我很乐意提供所有代码,但 StackOverflow 会阻止太多代码而几乎没有描述。任何人都可以帮助找出这些错误吗?谢谢