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_ );
}