From 91bbd5fcb220302d04f01e2855b72f0ae826869c Mon Sep 17 00:00:00 2001 From: Daniel James Date: Wed, 1 Mar 2017 16:46:18 +0000 Subject: [PATCH] Make emplace_args1 constructor explicit --- include/boost/unordered/detail/implementation.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/implementation.hpp b/include/boost/unordered/detail/implementation.hpp index a7a2d186..aa77aa39 100644 --- a/include/boost/unordered/detail/implementation.hpp +++ b/include/boost/unordered/detail/implementation.hpp @@ -492,7 +492,7 @@ template struct emplace_args1 { BOOST_UNORDERED_EARGS_MEMBER(1, 0, _) - emplace_args1(Arg0 b0) : a0(b0) {} + explicit emplace_args1(Arg0 b0) : a0(b0) {} }; template