| 62 | |
| 63 | static void _exitNonZeroFunction() _no_return_; |
| 64 | static void _exitNonZeroFunction() |
| 65 | { |
| 66 | /* destructor of static objects will be called. If StringCache was there then the allocator will report invalid deallocations of static SimpleString */ |
| 67 | SimpleString::setStringAllocator(SimpleString::getStringAllocator()->actualAllocator()); |
| 68 | exit(1); |
| 69 | } |
| 70 | |
| 71 | #include <errno.h> |
| 72 |
nothing calls this directly
no test coverage detected