尝试在 shared_ptr 向量上做一个简单的事情并崩溃?我怀疑我做错了什么?
std::vector< shared_ptr<SUBCLASS> > m_vecSections;
shared_ptr<SUBCLASS> hoodSection;
BOOST_FOREACH(hoodSection, m_vecSections ){
//do something
}
我正在崩溃
void add_ref_copy()
{
atomic_increment( &use_count_ );
}