Removed span from-nullptr_t ctor.

This commit is contained in:
Neil MacIntosh
2018-02-10 19:21:22 -08:00
parent 72688ff009
commit 2bdbba7418
4 changed files with 3 additions and 56 deletions

View File

@@ -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";