From 9b40a0a7c877529099b228db8d62df4037f4ef33 Mon Sep 17 00:00:00 2001 From: Neil MacIntosh Date: Thu, 27 Aug 2015 19:49:27 -0700 Subject: [PATCH] Fixed compile error with GCC/clang. --- include/array_view.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/array_view.h b/include/array_view.h index 4692e43..483485f 100644 --- a/include/array_view.h +++ b/include/array_view.h @@ -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); }