| 176 | } |
| 177 | |
| 178 | const char* posix_filebuf::error_message() const { |
| 179 | if (mLastError == 0) { |
| 180 | return "No error"; |
| 181 | } |
| 182 | return fl::strerror(mLastError); |
| 183 | } |
| 184 | |
| 185 | void posix_filebuf::captureError() { |
| 186 | mLastError = fl::get_errno(); |
nothing calls this directly
no test coverage detected