boostorg / stacktrace

C++ library for storing and printing backtraces.
https://boost.org/libs/stacktrace
422 stars 70 forks source link

Add support for disabled exceptions #91

Closed jeremiahar closed 4 years ago

jeremiahar commented 4 years ago

This fixes a build error when compiled with -fno-exceptions:

/usr/include/boost/stacktrace/stacktrace.hpp:98:11: error: exception handling disabled, use ‘-fexceptions’ to enable 98 | } catch (...) {

coveralls commented 4 years ago

Coverage Status

Coverage remained the same at 92.291% when pulling a8a4cefb521bcb47aeac2b2a2f4cc055a685cdf1 on jeremiahar:develop into f931528c87f19757e060f5fee1a4f8ccdbacf7a0 on boostorg:develop.

apolukhin commented 4 years ago

Many thanks for the PR!