aboutsummaryrefslogtreecommitdiffstats
path: root/tests/strided_span_tests.cpp
diff options
context:
space:
mode:
authorJordan Maples <jomaples@microsoft.com>2019-10-02 16:17:46 -0700
committerJordan Maples <jomaples@microsoft.com>2019-10-02 16:17:46 -0700
commiteb995b36714c6c8639da25ea90f8f4f73017e8ca (patch)
tree226904e9fc1f884470f3a295be708f0859ba7c96 /tests/strided_span_tests.cpp
parente026971c03ea0495f9623d9aad7a9beca24b5692 (diff)
downloadplatform_external_Microsoft-GSL-eb995b36714c6c8639da25ea90f8f4f73017e8ca.tar.gz
platform_external_Microsoft-GSL-eb995b36714c6c8639da25ea90f8f4f73017e8ca.tar.bz2
platform_external_Microsoft-GSL-eb995b36714c6c8639da25ea90f8f4f73017e8ca.zip
deprecating strided_span
Diffstat (limited to 'tests/strided_span_tests.cpp')
-rw-r--r--tests/strided_span_tests.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/strided_span_tests.cpp b/tests/strided_span_tests.cpp
index 949b1c2..0d0896a 100644
--- a/tests/strided_span_tests.cpp
+++ b/tests/strided_span_tests.cpp
@@ -17,7 +17,9 @@
#ifdef _MSC_VER
// blanket turn off warnings from CppCoreCheck from catch
// so people aren't annoyed by them when running the tool.
-#pragma warning(disable : 26440 26426 4996) // from catch deprecated
+#pragma warning(disable : 26440 26426) // from catch deprecated
+#pragma warning(disable : 4996) // strided_span is in the process of being deprecated.
+ // Suppressing warnings until it is completely removed
#endif