🚨 suppress warnings

Signed-off-by: Niels Lohmann <mail@nlohmann.me>
This commit is contained in:
Niels Lohmann 2025-05-30 09:25:15 +02:00
parent 3b0f9e51b3
commit 80f829a989
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69

View File

@ -3,7 +3,6 @@
# -Wno-c++98-compat-pedantic The library targets C++11.
# -Wno-deprecated-declarations The library contains annotations for deprecated functions.
# -Wno-extra-semi-stmt The library uses assert which triggers this warning.
# -Wno-nrvo Doctest triggers this warning.
# -Wno-padded We do not care about padding warnings.
# -Wno-covered-switch-default All switches list all cases and a default case.
# -Wno-unsafe-buffer-usage Otherwise Doctest would not compile.
@ -15,7 +14,6 @@ set(CLANG_CXXFLAGS
-Wno-c++98-compat-pedantic
-Wno-deprecated-declarations
-Wno-extra-semi-stmt
-Wno-nrvo
-Wno-padded
-Wno-covered-switch-default
-Wno-unsafe-buffer-usage