summaryrefslogtreecommitdiff
path: root/FreeFileSync/Source/lib/binary.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'FreeFileSync/Source/lib/binary.cpp')
-rw-r--r--FreeFileSync/Source/lib/binary.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/FreeFileSync/Source/lib/binary.cpp b/FreeFileSync/Source/lib/binary.cpp
index 899d45a8..8ec4a184 100644
--- a/FreeFileSync/Source/lib/binary.cpp
+++ b/FreeFileSync/Source/lib/binary.cpp
@@ -10,7 +10,7 @@
#include <zen/file_io.h>
using namespace zen;
-using ABF = AbstractBaseFolder;
+using AFS = AbstractFileSystem;
namespace
{
@@ -72,10 +72,10 @@ const std::int64_t TICKS_PER_SEC = ticksPerSec();
}
-bool zen::filesHaveSameContent(const AbstractPathRef& filePath1, const AbstractPathRef& filePath2, const std::function<void(std::int64_t bytesDelta)>& onUpdateStatus) //throw FileError
+bool zen::filesHaveSameContent(const AbstractPath& filePath1, const AbstractPath& filePath2, const std::function<void(std::int64_t bytesDelta)>& onUpdateStatus) //throw FileError
{
- const std::unique_ptr<ABF::InputStream> inStream1 = ABF::getInputStream(filePath1); //throw FileError, (ErrorFileLocked)
- const std::unique_ptr<ABF::InputStream> inStream2 = ABF::getInputStream(filePath2); //
+ const std::unique_ptr<AFS::InputStream> inStream1 = AFS::getInputStream(filePath1); //throw FileError, (ErrorFileLocked)
+ const std::unique_ptr<AFS::InputStream> inStream2 = AFS::getInputStream(filePath2); //
BufferSize dynamicBufSize(std::min(inStream1->optimalBlockSize(),
inStream2->optimalBlockSize()));
bgstack15