クラスのコンストラクターにfunctorパラメーターのデフォルトのfunctorが必要です。最小限の例として、フィルターとして機能するクラスを考え出しました。このクラスはT
、フィルター関数がtrueを返す場合にタイプiの要素をフィルター処理します。フィルタ関数はコンストラクタで提供する必要があり、デフォルトでは「すべて受け入れる」フィルタ関数になります。
template<class T>
class Filter
{
public:
typedef std::function<bool(const T&)> FilterFunc;
Filter(const FilterFunc & f = [](const T&){ return true; }) :
f(f)
{
}
private:
FilterFunc f;
};
次のようにテンプレートクラスをインスタンス化します。
int main() {
Filter<int> someInstance; // No filter function provided (<-- line 19)
}
ただし、gcc 4.7はこのコードを気に入っていないようです:
prog.cpp: In constructor ‘Filter<T>::Filter(const FilterFunc&) [with T = int; Filter<T>::FilterFunc = std::function<bool(const int&)>]’:
prog.cpp:19:17: internal compiler error: in tsubst_copy, at cp/pt.c:12141
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-4.7/README.Bugs> for instructions.
Preprocessed source stored into /home/g9i3n9/cc82xcqE.out file, please attach this to your bugreport.
どうしたの?私のコード標準は準拠していますか(GCCはここで本当にバグがあるか、これを実装していません)、または私は何か間違ったことをしていますか?
回避策として、現在、デフォルトで構成されたものを使用しており、設定されている場合にstd::function
のみ呼び出します(呼び出したい場所)。
Filter(const FilterFunc & f = FilterFunc) :
f(f)
{
}
// When using it:
void process() {
if (!f || f(someItem)) { // <-- workaround
}
}