8 Aug
2008
8 Aug
'08
9:13 p.m.
Oliver Kania
Hello,the following code makes the VC++ compiler (VS 2005) crash,but only
when I am trying a release build ! The debug builds work fine.std::sort (l_vec.begin(),l_vec.end(),boost::bind(std::less<int>(),boost::bind (&CLayer::GetPrio,_1),boost::bind(&CLayer::GetPrio,_2))); Where CLayer::GetPrio returns an integer.Best regards,Oliver It is not an answer to your question, but may be a workaround: Boost.Bind now supports direct <, so one could write: std::sort(l_vec.begin(), l_vec.end(), boost::bind(&CLayer::GetPrio,_1) < boost::bind(&CLayer::GetPrio,_2)); Which is also more readable.