| 2533 | // PErrorWriter |
| 2534 | |
| 2535 | PErrorWriter::~PErrorWriter(void) { |
| 2536 | if (m_proceed) { |
| 2537 | #if ELPP_COMPILER_MSVC |
| 2538 | char buff[256]; |
| 2539 | strerror_s(buff, 256, errno); |
| 2540 | m_logger->stream() << ": " << buff << " [" << errno << "]"; |
| 2541 | #else |
| 2542 | m_logger->stream() << ": " << strerror(errno) << " [" << errno << "]"; |
| 2543 | #endif |
| 2544 | } |
| 2545 | } |
| 2546 | |
| 2547 | // PerformanceTracker |
| 2548 |
nothing calls this directly
no outgoing calls
no test coverage detected