派生は、C++11の統一初期化構文を使用して基本クラスコンストラクターを呼び出すことに注意してください。
class base
{
protected:
base()
{}
};
class derived : public base
{
public:
derived()
: base{} // <-- Note the c++11 curly brace syntax
// using uniform initialization. Change the
// braces to () and it works.
{}
};
int main()
{
derived d1;
return 0;
}
g ++ 4.6はこれをコンパイルしますが、g++4.7はコンパイルしません。
$ g++-4.7 -std=c++11 -Wall -Wextra -pedantic curly.cpp -o curly
curly.cpp: In constructor ‘derived::derived()’:
curly.cpp:4:13: error: ‘base::base()’ is protected
curly.cpp:19:24: error: within this context
どうしたの?
アップデート1:clang ++-3.1で警告なしにコンパイルされます
アップデート2:確かにコンパイラのバグのようです。明らかにGCC4.7.3で修正されています。