summaryrefslogtreecommitdiff
path: root/zen/file_traverser.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:17:08 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:17:08 +0200
commitcc9a53cd3874c35e9caf47b44224abc159526891 (patch)
treeb13b5c0ddb471a109ac648d469f72dcc6f9c6e07 /zen/file_traverser.cpp
parent4.3 (diff)
downloadFreeFileSync-cc9a53cd3874c35e9caf47b44224abc159526891.tar.gz
FreeFileSync-cc9a53cd3874c35e9caf47b44224abc159526891.tar.bz2
FreeFileSync-cc9a53cd3874c35e9caf47b44224abc159526891.zip
4.4
Diffstat (limited to 'zen/file_traverser.cpp')
-rw-r--r--zen/file_traverser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/file_traverser.cpp b/zen/file_traverser.cpp
index 81e70383..8a8a8b6f 100644
--- a/zen/file_traverser.cpp
+++ b/zen/file_traverser.cpp
@@ -126,7 +126,7 @@ struct X //see "policy based design"
{
typedef ... Handle;
typedef ... FindData;
-static Handle create(const Zstring& directoryPf, FindData& fileInfo); //throw FileError
+static Handle create(const Zstring& directoryPf, FindData& fileInfo); //throw FileError - concession to FindFirstFile(): implement two operations: 1. open handle, 2. retrieve first data set
static void destroy(Handle hnd); //throw()
static bool next(Handle hnd, const Zstring& directory, WIN32_FIND_DATA& fileInfo) //throw FileError
bgstack15