Fixed compile error with GCC/clang.

This commit is contained in:
Neil MacIntosh 2015-08-27 19:49:27 -07:00
parent 9f9fad9620
commit 9b40a0a7c8

View File

@ -1634,7 +1634,7 @@ public:
{
}
_CONSTEXPR array_view(nullptr_t, size_type size) : Base(nullptr, bounds_type{})
_CONSTEXPR array_view(std::nullptr_t, size_type size) : Base(nullptr, bounds_type{})
{
fail_fast_assert(size == 0);
}