We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 this patch to magistrate and then clean up the sources of new warnings:
diff --git a/cmake/turn_on_warnings.cmake b/cmake/turn_on_warnings.cmake index f492db2..5527255 100644 --- a/cmake/turn_on_warnings.cmake +++ b/cmake/turn_on_warnings.cmake @@ -14,6 +14,10 @@ endfunction() get_directory_property(hasParent PARENT_DIRECTORY) if(NOT hasParent) enable_cxx_compiler_flag_if_supported("-Wall") + enable_cxx_compiler_flag_if_supported("-Wextra") + enable_cxx_compiler_flag_if_supported("-Wshadow") + enable_cxx_compiler_flag_if_supported("-Wnon-virtual-dtor") + enable_cxx_compiler_flag_if_supported("-Wsuggest-override") enable_cxx_compiler_flag_if_supported("-pedantic") enable_cxx_compiler_flag_if_supported("-Wno-unknown-pragmas") endif()
The text was updated successfully, but these errors were encountered:
#333: cmake: enable more warnings
97fc09a
#333: warnings: fix all the warnings
7a2b431
#333: warnings: more warning fixes
6cdfc42
a749a69
Successfully merging a pull request may close this issue.
Add this patch to magistrate and then clean up the sources of new warnings:
The text was updated successfully, but these errors were encountered: