Why does this snippet using uniform initialization compile with g++4.6 but not g++4.7?

前端 未结 4 1792
孤独总比滥情好
孤独总比滥情好 2021-02-04 23:44

Note that derived uses C++11 uniform initialization syntax to call the base class constructor.

class base
{
    protected:
        base()
        {}
};
         


        
4条回答
  •  既然无缘
    2021-02-05 00:32

    I found this:

    "The draft says that an initializer list initializing a reference is done not by direct binding, but by first constructing a temporary out of the element in the initializer list, and then binding the target reference to that temporary"

    So it might be choking on the fact that the temporary created by base{} is being done through a protected constructor.

提交回复
热议问题