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

Add -Wextra -Wno-compare-reals gfortran flags #306

Merged

Commits on Jul 27, 2018

  1. Add -Wextra -Wno-compare-reals gfortran flags

    -Wall does not actually turn on ALL warnings, so we include -Wextra as well.
    However, -Wextra flags checking for equality between two reals with the warning
    
    Equality comparison for REAL(8) at (1)
    
    And we want to allow those checks, so we also include -Wno-compare-reals.
    
    These extra checks picked up on a few unused parameters (mostly "subname" being
    declared in a subroutine and then never used)
    mnlevy1981 committed Jul 27, 2018
    Configuration menu
    Copy the full SHA
    1dc3939 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2018

  1. Clean up some comments

    mnlevy1981 committed Jul 30, 2018
    Configuration menu
    Copy the full SHA
    1603831 View commit details
    Browse the repository at this point in the history