boost :: apply_visitor和左值引用

时间:2019-03-09 23:12:25

标签: c++ c++11 boost c++14 boost-variant

是否安全(我想知道x的生命周期):

boost::apply_visitor([this](const auto& arg) { someClass.method(arg); }, x);

{apply_visitor使用左值引用(非常量),但是lambda具有const auto&,这样安全吗?

0 个答案:

没有答案