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 warnings raised by clang 11 #8664

Merged
merged 1 commit into from Jun 7, 2021

Commits on Jun 2, 2021

  1. Fix warnings raised by clang 11

    This fixes a few kinds of warnings:
     - inconsistent-missing-override when the overriding site is missing the
       override keyword
     - unused-function when a function is neither visible nor used
     - unused-private-field when a private field exists but is never used
     - sign-compare when unsigned ints are compared to signed ints. Not all
       of those have been addressed, but this warning isn't enabled by
       default.
    
    This fixes protocolbuffers#8612.
    Kernald committed Jun 2, 2021
    Copy the full SHA
    3ddcaca View commit details
    Browse the repository at this point in the history