使用std :: shared_ptr线程构建块

时间:2015-05-20 09:21:05

标签: c++ tbb-flow-graph

我刚刚开始与TBB合作。不得不说它看起来很不错,但我遇到了以下问题。使用带有std :: shared_ptr的lambda似乎不起作用。

source_node<int>(g,[&](int& val) -> bool {val = 0; return true;},false);
source_node<std::shared_ptr<int>(g,[&](std::shared_ptr<int> val) -> bool {val = std::make_shared<int>(0);return true;},false);

出现以下编译错误:

error: C2665: 'std::shared_ptr<int>::shared_ptr' : none of the 5 overloads could convert all the argument types
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\memory(504): could be 'std::shared_ptr<int>::shared_ptr<main::<lambda_484cee4d4b0231890bebaeba94e0ddad>,bool>(std::nullptr_t,_Dx,_Alloc)'
with
[
    _Dx=main::<lambda_484cee4d4b0231890bebaeba94e0ddad>
]

基本上int已被std :: shared_ptr替换。

任何想法都会被贬低!

对待Auke

1 个答案:

答案 0 :(得分:0)

Thanx Mike Seymour

source_node<std::shared_ptr<int>>(g,[&](std::shared_ptr<int> val) -> bool {val = std::make_shared<int>(0);return true;},false);