March 27, 2003
Not that it matters much, I'm just tired of seeing it, and now boost has a specific test for it.. BOOST_NO_UNREACHABLE_RETURN_DETECTION

int fn() {
throw 0;
}

int main() {
fn();
}

Richard