标签: c++ c++11 boost c++14 boost-variant
是否安全(我想知道x的生命周期):
x
boost::apply_visitor([this](const auto& arg) { someClass.method(arg); }, x);
{apply_visitor使用左值引用(非常量),但是lambda具有const auto&,这样安全吗?
apply_visitor
const auto&