summaryrefslogtreecommitdiff
path: root/FreeFileSync/Source/base/algorithm.h
diff options
context:
space:
mode:
Diffstat (limited to 'FreeFileSync/Source/base/algorithm.h')
-rw-r--r--FreeFileSync/Source/base/algorithm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeFileSync/Source/base/algorithm.h b/FreeFileSync/Source/base/algorithm.h
index 75b7e7a6..4ef7f9bb 100644
--- a/FreeFileSync/Source/base/algorithm.h
+++ b/FreeFileSync/Source/base/algorithm.h
@@ -102,7 +102,7 @@ private:
TempFileBuffer (const TempFileBuffer&) = delete;
TempFileBuffer& operator=(const TempFileBuffer&) = delete;
-void createTempFolderPath(); //throw FileError
+ void createTempFolderPath(); //throw FileError
std::map<FileDescriptor, Zstring> tempFilePaths_;
Zstring tempFolderPath_;
bgstack15