diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-18 16:09:25 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-18 16:09:25 +0100 |
commit | 5c0742fe7c1e21fb491d5380e6761644a5064c5e (patch) | |
tree | 7881f076aa9da974bd3401863cb6a546f1457075 | |
parent | 4408dbdef53a35ca6402732a187fbcd9043505c7 (diff) |
cmake: kill suggested parentheses warning
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a52542d8..fa42d157 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -146,7 +146,7 @@ if(CMAKE_COMPILER_IS_GNUCXX) if (CMAKE_CXX_COMPILER_ID MATCHES "Clang$") add_definitions(-D_LIBCPP_REMOVE_TRANSITIVE_INCLUDES) else() - add_compile_options(-Wno-subobject-linkage) + add_compile_options(-Wno-subobject-linkage -Wno-parentheses) endif() endif() |