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:
Diffstat (limited to 'tests/string_span_tests.cpp')
-rw-r--r--tests/string_span_tests.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/string_span_tests.cpp b/tests/string_span_tests.cpp
index 83171ac..0032b0f 100644
--- a/tests/string_span_tests.cpp
+++ b/tests/string_span_tests.cpp
@@ -511,12 +511,6 @@ TEST_CASE("Constructors")
CHECK(span.length() == 0);
}
- // from nullptr
- {
- cstring_span<> span(nullptr);
- CHECK(span.length() == 0);
- }
-
// from string literal
{
cstring_span<> span = "Hello";