atom-lint icon indicating copy to clipboard operation
atom-lint copied to clipboard

Support for c++ 11

Open whitepaper opened this issue 9 years ago • 0 comments

Hello, Currently atom-lint seems cannot support c++11 by default. For example, the following code using lambda function is treated as an error: std::sort(vec.begin(), vec.end(), [](const pair<int, int>& a, const pair<int, int>& b) {return a.second > b.second;}); Is there any way to get around this?

whitepaper avatar Dec 16 '14 16:12 whitepaper