Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/onqtam/doctest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSalvage <29021710+Saalvage@users.noreply.github.com>2022-10-09 04:36:43 +0300
committerSalvage <29021710+Saalvage@users.noreply.github.com>2022-10-09 04:36:43 +0300
commitdb88ddd02420166245b399db6e290720fdf386f2 (patch)
tree9b288a745728bf2c024687ba47713b60f0e935cf
parentbe0186923ec8837d0d67d49100885ba4d8096dfe (diff)
More suppression
-rw-r--r--examples/all_features/test_cases_and_suites.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/all_features/test_cases_and_suites.cpp b/examples/all_features/test_cases_and_suites.cpp
index f73d1aed..87dd64a5 100644
--- a/examples/all_features/test_cases_and_suites.cpp
+++ b/examples/all_features/test_cases_and_suites.cpp
@@ -45,7 +45,9 @@ TEST_CASE_FIXTURE(SomeFixture, "fixtured test - not part of a test suite") {
}
DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_BEGIN
-DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH("-Wreserved-id-macro")
+DOCTEST_CLANG_SUPPRESS_WARNING_PUSH
+DOCTEST_CLANG_SUPPRESS_WARNING("-Wreserved-id-macro")
+DOCTEST_CLANG_SUPPRESS_WARNING("-Wunused-macros")
#define __mulodi4(a, b, c) a * b
DOCTEST_CLANG_SUPPRESS_WARNING_POP
#include <chrono>