diff options
author | B Stack <bgstack15@gmail.com> | 2019-01-15 08:16:08 -0500 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2019-01-15 08:16:08 -0500 |
commit | 7c855d11f23dc03d64a0099473a95402f3175280 (patch) | |
tree | 41b8a3085df4de883f2993773b138f1436e041a4 /zen/file_io.cpp | |
parent | Merge branch '10.7' into 'master' (diff) | |
download | FreeFileSync-7c855d11f23dc03d64a0099473a95402f3175280.tar.gz FreeFileSync-7c855d11f23dc03d64a0099473a95402f3175280.tar.bz2 FreeFileSync-7c855d11f23dc03d64a0099473a95402f3175280.zip |
10.8
Diffstat (limited to 'zen/file_io.cpp')
-rwxr-xr-x | zen/file_io.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zen/file_io.cpp b/zen/file_io.cpp index 80fb3153..1c6ab6f2 100755 --- a/zen/file_io.cpp +++ b/zen/file_io.cpp @@ -128,7 +128,7 @@ size_t FileInput::tryRead(void* buffer, size_t bytesToRead) //throw FileError, E return bytesRead; //"zero indicates end of file" } - + size_t FileInput::read(void* buffer, size_t bytesToRead) //throw FileError, ErrorFileLocked, X; return "bytesToRead" bytes unless end of stream! { /* @@ -203,7 +203,7 @@ FileOutput::FileOutput(FileHandle handle, const Zstring& filePath, const IOCallb FileBase(handle, filePath), notifyUnbufferedIO_(notifyUnbufferedIO) {} -FileOutput::FileOutput(const Zstring& filePath, AccessFlag access, const IOCallback& notifyUnbufferedIO) : +FileOutput::FileOutput(AccessFlag access, const Zstring& filePath, const IOCallback& notifyUnbufferedIO) : FileBase(openHandleForWrite(filePath, access), filePath), notifyUnbufferedIO_(notifyUnbufferedIO) {} //throw FileError, ErrorTargetExisting |