std::string programPath = "ppath";
const auto str = [&programPath = static_cast<const decltype(programPath)&>(programPath)]()
{
// programPath = "";
std::stringstream ss;
ss << __PRETTY_FUNCTION__ << programPath;
return ss.str();
}();
return 0;
}
std::as_const
https://stackoverflow.com/a/32440415
[best_string = cref(best_string)](const string& s) { best_string = s; // fails }; вот еще
Обсуждают сегодня