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

github.com/microsoft/GSL.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Maples [MSFT] <49793787+JordanMaples@users.noreply.github.com>2019-12-04 23:48:13 +0300
committerJordan Maples [MSFT] <49793787+JordanMaples@users.noreply.github.com>2019-12-04 23:48:13 +0300
commit87eaa45445556954a18a92c2af928bc683a1088a (patch)
tree14d642b9a69006c7bbaf6ad16b5a96745b348d37 /tests/algorithm_tests.cpp
parent43aca2646ba992eb56d32163c9b6867e5be3d5da (diff)
suppressing -Wundef in clang (GTest emitted)
Diffstat (limited to 'tests/algorithm_tests.cpp')
-rw-r--r--tests/algorithm_tests.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/algorithm_tests.cpp b/tests/algorithm_tests.cpp
index 96bfb93..e00e688 100644
--- a/tests/algorithm_tests.cpp
+++ b/tests/algorithm_tests.cpp
@@ -23,6 +23,7 @@
#if __clang__ || __GNUC__
//disable warnings from gtest
#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wundef"
#pragma GCC diagnostic ignored "-Wglobal-constructors"
#pragma GCC diagnostic ignored "-Wused-but-marked-unused"
#pragma GCC diagnostic ignored "-Wcovered-switch-default"