3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-28 19:38:51 +00:00

Fix MacOS CMake build: guard override with #ifdef Z3DEBUG in static_matrix.h, add clang warnings

This commit is contained in:
copilot-swe-agent[bot] 2026-06-17 18:12:28 +00:00 committed by GitHub
parent 17b85cbe20
commit 222a5a467b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 3 deletions

View file

@ -20,6 +20,9 @@ set(CLANG_ONLY_WARNINGS
"-Wno-c++98-compat"
"-Wno-c++98-compat-pedantic"
"-Wno-zero-length-array"
"-Wc99-extensions"
"-Wsuggest-override"
"-Winconsistent-missing-override"
)
set(MSVC_WARNINGS "/W3")