it != m_entities.end();
++it)
{
if ((*it)->IsSelected())
vec.push_back((*it));
}
// just serialize the selected item vector (*)
oa &
BOOST_SERIALIZATION_NVP(vec);
* - This is failing in oserializer.hpp line 417, the relevant code being:
// sice true_type is valid, and this only gets made if the
// pointer
oserializer object has been created, this should never
// fail
bpos_ptr =
archive_pointer_oserializer<Archive>::find(* true_type);
assert(NULL !=
bpos_ptr); // <------------------ this assert
triggered.
I note the confident comment above find(). Can anyone help here?
Many thanks
Jerry