29 Sep
2011
29 Sep
'11
5:33 p.m.
std::string firstKey(secondKey.compareKey(m_index)->signature());
map_type::const_iterator findIt(std::find_if(m_records.begin(), m_records.end(), boost::bind(&map_type::key_type::first, _1) == firstKey));
You probably meant map_type::value_type::first. But why not just m_records.find(firstKey)?