Displaying 1 result from an estimated 1 matches for "some_exception".
2015 Oct 29
6
[RFC][libcxx] Fix and maintain the no-exceptions build of libcxx
...+committed, we can enable the
testing
stages of the bots, so that we don't regress the no-exceptions behavior.
[Phase-3: Add more tests]
There are quite a few other places in the source which follow the pattern:
#ifndef _LIBCPP_NO_EXCEPTIONS
if (check_some_bad_stat())
throw some_exception()
#endif
// continues like nothing happened
I don't think all of those cases are exposed in the current tests, we need
to
weed-out these cases and add more tests.
Does that sound like an OK plan? What do others think about supporting the
no-exceptions libcxx variety long-term?...