| 53 | { |
| 54 | #ifdef DEV_BUILD |
| 55 | void cleanError(const Firebird::Exception* e) |
| 56 | { |
| 57 | if (e) |
| 58 | { |
| 59 | // This is done to be able to look at status in debugger |
| 60 | Firebird::StaticStatusVector status; |
| 61 | e->stuffException(status); |
| 62 | } |
| 63 | |
| 64 | // we do not have big choice in error reporting when running global destructors |
| 65 | abort(); |
| 66 | } |
| 67 | #else |
| 68 | void cleanError(const Firebird::Exception*) { } |
| 69 | #endif |
no test coverage detected