std::function <void()> f = [vs = move(v)](){}; std::function tries to copy the lambda function even though it is rvalue. Desired behavior is to construct the ...
確定! 回上一頁