0

私はTBBで働き始めたばかりです。見た目はとてもいいと言わざるを得ませんが、次の問題に遭遇しました。std::shared_ptr でラムダを使用しても機能しないようです。

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 に置き換えられました。

どんなアイデアも高く評価されます!

オーケよろしく

4

1 に答える 1