Hi,
I have an assert when exiting my application using the serialization lib of
boost 1.38.
BOOST_DLLEXPORT static T & get_instance() {
static detail::singleton_wrapper<T> t;
// refer to instance, causing it to be instantiated (and
// initialized at startup on working compilers)
assert(! detail::singleton_wrapper<T>::m_is_destroyed);
use(instance);
return static_cast