| 88 | } |
| 89 | |
| 90 | int Storage::SetFileWritePos(const string &path, const size_t &offset, bool trunc) { |
| 91 | return SetFilePos(path, offset, MODE::WRITE, trunc); |
| 92 | } |
| 93 | |
| 94 | int Storage::SetFilePos(const string &path, const size_t &offset, const MODE &mode, bool trunc) { |
| 95 | if (mode_ != mode) { |
no outgoing calls
no test coverage detected