From c6760c8566494f3c5ff7d2c287ee0401fda6d118 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Fri, 3 Aug 2018 16:50:29 +1000 Subject: [PATCH] view: don't over qualify the array deduction guide --- view.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view.hpp b/view.hpp index 542b87e5..01701cdd 100644 --- a/view.hpp +++ b/view.hpp @@ -412,7 +412,7 @@ namespace util { //------------------------------------------------------------------------- template - view (const ValueT(&)[N]) -> view; + view (ValueT(&)[N]) -> view; //-------------------------------------------------------------------------