C++ Insights new lambda transformation (opens in new tab)
Last week I pushed an updated lambda transformation for C++ Insights. Here is a little background on the change. Since I first published C++ Insights when you transformed a lambda like the following: 1 2 3 4 5 6int main() { int val{4}; auto lamb = [&] { return val; }; } The result …
Read the original article