値の型がtemplate-functorへのポインターであるstd::mapを作成しようとすると、VisualStudioが中断します。私はここで違法なことをしていますか?
// Functor prototype
template< class T, class evenT>
class FunctionHandler {};
// std::Map definition
template <class T, class evenT>
map<int, FunctionHandler<T, evenT>* > lookup;
誰かがこれがエラーであるか(そしてなぜこれが間違っているのか)、それとも単なるVisual Studioであるかを教えてもらえますか?