From: Max Motovilov (max_at_[hidden])
Date: 2005-12-07 23:38:08


....make that

template <typename X> bool checked_throw( const X& x )
{
    if( !pre_exception(x) ) throw x;
    return true;
}