Skip to content
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

Fix NOLINT(*) regression #655

Merged
merged 1 commit into from
Oct 21, 2015

Commits on Oct 21, 2015

  1. Fix NOLINT(*) regression

    After recent commit was tested over wider existing code
    base, it was reported cpplint_mod.py would crash on
    source code that contained "// NOLINT(*)".
    
    This regression was fixed and tested against this fuller
    (fullest) set of cases.  First two are "mask all lint reports"
    wildcards.
    
        #include <thread>
        #include <thread>  // NOLINT
        #include <thread>  // NOLINT(*)
        #include <thread>  // NOLINT(build/c++11)
        #include <thread>  // NOLINT(build/c++11-2)
    cbagwell committed Oct 21, 2015
    Configuration menu
    Copy the full SHA
    a2df56e View commit details
    Browse the repository at this point in the history