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?
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?