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:29:45 +0300
committerSalvage <29021710+Saalvage@users.noreply.github.com>2022-10-09 04:29:45 +0300
commitbe0186923ec8837d0d67d49100885ba4d8096dfe (patch)
treee3124fac03b35686e137380ba6de71a75ae3b37f
parent101daaf519623b6c766829722b177acc5fddb10f (diff)
Suppress warning
-rw-r--r--examples/all_features/test_cases_and_suites.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/all_features/test_cases_and_suites.cpp b/examples/all_features/test_cases_and_suites.cpp
index 791df0df..f73d1aed 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")
#define __mulodi4(a, b, c) a * b
+DOCTEST_CLANG_SUPPRESS_WARNING_POP
#include <chrono>
#include <thread>
DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_END