Make emplace_args1 constructor explicit

This commit is contained in:
Daniel James
2017-03-01 16:46:18 +00:00
parent b6e3f2303f
commit 91bbd5fcb2

View File

@ -492,7 +492,7 @@ template <typename A0> struct emplace_args1
{
BOOST_UNORDERED_EARGS_MEMBER(1, 0, _)
emplace_args1(Arg0 b0) : a0(b0) {}
explicit emplace_args1(Arg0 b0) : a0(b0) {}
};
template <typename A0>