From 761554f68d8dfaa19f89b7b2a861035dbd9ff46d Mon Sep 17 00:00:00 2001 From: Neil MacIntosh Date: Tue, 29 Sep 2015 16:54:00 -0700 Subject: [PATCH] Correct misleading text in static_assert. Fixes issue #67. --- 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 9db9d53..c581760 100644 --- a/include/array_view.h +++ b/include/array_view.h @@ -77,7 +77,7 @@ namespace details class coordinate_facade { static_assert(std::is_integral::value - && sizeof(ValueType) <= sizeof(size_t), "ValueType must be unsigned integral type!"); + && sizeof(ValueType) <= sizeof(size_t), "ValueType must be an integral type!"); static_assert(Rank > 0, "Rank must be greater than 0!"); template