blob: 587c71b9b8a1f7a814eae6d753ccaf4a8f65a982 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- cmake/EthCompilerSettings.cmake.orig 2020-12-16 17:41:40 UTC
+++ cmake/EthCompilerSettings.cmake
@@ -53,9 +53,10 @@ if (("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU") OR ("${
add_compile_options(-Wimplicit-fallthrough)
add_compile_options(-Wsign-conversion)
add_compile_options(-Wconversion)
+ add_compile_options(-Qunused-arguments)
eth_add_cxx_compiler_flag_if_supported(
- $<$<COMPILE_LANGUAGE:CXX>:-Wextra-semi>
+ -Wextra-semi
)
eth_add_cxx_compiler_flag_if_supported(-Wfinal-dtor-non-final-class)
eth_add_cxx_compiler_flag_if_supported(-Wnewline-eof)
|