AtomLinter / linter-cpplint

Linter plugin for c++, using cpplint
https://atom.io/packages/linter-cpplint
MIT License
6 stars 5 forks source link

Creating False Positives #16

Closed TheConundrum closed 7 years ago

TheConundrum commented 9 years ago

This is detecting errors in the code when compiled even if the compilation is successful. For example this code snippet still shows an error "expected ';' before '}'

include < iostream >

include < string >

using std::cout; using std::cin; using std::string; int main() { string input1, input2; cin>>input1>>input2; cout<<input1+input2; }

Arcanemagus commented 8 years ago

Does cpplint from the command line exhibit the same behavior?

Arcanemagus commented 7 years ago

Closing due to a lack of response.