id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 12733,construct no longer supports automatic conversion from char* to std::string,Braden McDaniel ,Thomas Heller,"Given: {{{#!c++ foo { explicit foo(const std::string &); }; }}} ...this use of `boost::phoenix::construct` now fails in Boost 1.63.0 (using Apple Clang 8.0): {{{#!c++ boost::phoenix::construct(""str""); }}} The issue can be worked around by explicitly constructing a `std::string`: {{{#!c++ boost::phoenix::construct(std::string{""str""}); }}} ...however, the automatic conversion from `char*` worked in Boost 1.62.0. ",Bugs,closed,Boost 1.67.0,phoenix,Boost 1.63.0,Regression,fixed,,