-
Notifications
You must be signed in to change notification settings - Fork 30.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[tools] update cpplint.py #7444
Labels
tools
Issues and PRs related to the tools directory.
Comments
I'd be up for taking a dig into it. @trevnorris do we have any idea how many patches there are? |
Seems like all of these except for the first one are from us? |
I'll have a stab at this. |
Merged
Yey! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The file
tools/cpplint.py
needs to be updated with the latest (https://raw.githubusercontent.com/google/styleguide/gh-pages/cpplint/cpplint.py). Reason is because some header information has changed that's causing lint errors for c++11 specific code. Specifically thatstd::swap()
used to be in<algorithm>
but since c++11 is now in<utility>
.The file will need to be updated, and all previous patches will need to be reapplied. The later is the difficult part, and my python isn't up to snuff to deal with them.
The text was updated successfully, but these errors were encountered: