From 8b2c1d3fd29b4238b38fe34aa97b6dda08d43524 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Thu, 24 Aug 2017 17:52:06 +1000 Subject: [PATCH] coord/init: make 1-dimension constructor explicit --- coord/init.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coord/init.hpp b/coord/init.hpp index 5423e75b..cef7dd30 100644 --- a/coord/init.hpp +++ b/coord/init.hpp @@ -31,7 +31,7 @@ namespace util::coord { { using store<1,T,tags...>::store; constexpr init () = default; - constexpr init (T v0): + constexpr explicit init (T v0): store<1,T,tags...> ({v0}) { ; } };