Я использую boost :: multi_index с Visual Studio 2010, и, похоже, происходит сбой при использовании методов boost :: const_mem_fun и виртуального класса:
class Node
{
public:
virtual const std::string& getValue() const {return m_strValue;}
protected:
std::string m_strValue;
private:
struct byValue{};
typedef boost::multi_index_container<
boost::shared_ptr<Node>,
boost::multi_index::indexed_by<
boost::multi_index::random_access<>,
boost::multi_index::ordered_non_unique<
boost::multi_index::tag<byValue>,
boost::multi_index::const_mem_fun<Node, const std::string& , &Node::getValue>
>
>
> NodeList;
};
при компиляции, визуальный сбой с этимтип сообщения:
fatal error C1001: An internal error has occurred in the compiler.
1> (compiler file 'msc1.cpp', line 1420)
1> To work around this problem, try simplifying or changing the program near the locations listed above.
1> Please choose the Technical Support command on the Visual C++
1> Help menu, or open the Technical Support help file for more information
, но если Node :: getValue не является виртуальным, компиляция в порядке.есть ли способ обойти это?