| 91 | // ---------------------------------------------------------------------- |
| 92 | template <class E> |
| 93 | inline void throw_exception(const E& exception) |
| 94 | { |
| 95 | #if !defined(SPP_NO_EXCEPTIONS) |
| 96 | throw exception; |
| 97 | #else |
| 98 | assert(0); |
| 99 | abort(); |
| 100 | #endif |
| 101 | } |
| 102 | |
| 103 | // ---------------------------------------------------------------------- |
| 104 | // M U T A B L E P A I R H A C K |
no test coverage detected