mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
Merge pull request #1111 from delcypher/fix_cxx_api_exceptions_gcc_4_8
Unbreak Z3 C++ API exception support for GCC < 5.0.
This commit is contained in:
commit
bfd1bbc136
|
@ -87,7 +87,7 @@ namespace z3 {
|
||||||
inline std::ostream & operator<<(std::ostream & out, exception const & e) { out << e.msg(); return out; }
|
inline std::ostream & operator<<(std::ostream & out, exception const & e) { out << e.msg(); return out; }
|
||||||
|
|
||||||
#if !defined(Z3_THROW)
|
#if !defined(Z3_THROW)
|
||||||
#if __cpp_exceptions || _CPPUNWIND
|
#if __cpp_exceptions || _CPPUNWIND || __EXCEPTIONS
|
||||||
#define Z3_THROW(x) throw x
|
#define Z3_THROW(x) throw x
|
||||||
#else
|
#else
|
||||||
#define Z3_THROW(x) {}
|
#define Z3_THROW(x) {}
|
||||||
|
@ -2796,6 +2796,6 @@ namespace z3 {
|
||||||
|
|
||||||
/*@}*/
|
/*@}*/
|
||||||
/*@}*/
|
/*@}*/
|
||||||
|
#undef Z3_THROW
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue