Re: [C++ Patch] PR 58255

2013-08-28 Thread Jason Merrill
OK. Jason

[C++ Patch] PR 58255

2013-08-28 Thread Paolo Carlini
Hi, for value-initialization (thus void_type_node as init), explicit should not matter, thus we shouldn't set LOOKUP_ONLYCONVERTING. I also double checked that we do the right thing for testcases like: struct A { explicit A(int = 0); }; A a1 = 1; /* error */ A a2; /* Ok */ A a3(2); /*