| 81 | } |
| 82 | |
| 83 | system::result<void> file::sync_data() |
| 84 | { |
| 85 | system::error_code ec; |
| 86 | file_.sync_data(ec); |
| 87 | return ec ? ec : system::result<void>{}; |
| 88 | } |
| 89 | |
| 90 | system::result<void> file::close() |
| 91 | { |
nothing calls this directly
no test coverage detected