yujinakayama / atom-lint

Obsolete: Generic code linting support for Atom
https://atom.io/packages/atom-lint
MIT License
111 stars 33 forks source link

Support for c++ 11 #111

Open whitepaper opened 9 years ago

whitepaper commented 9 years ago

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?