summaryrefslogtreecommitdiff
path: root/zen/dir_watcher.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2016-03-16 21:33:19 +0100
committerDaniel Wilhelm <daniel@wili.li>2016-03-16 21:33:19 +0100
commit27286406235d3c5c51d890835f1168ddadf1c9bb (patch)
treece7dc9bc76092fccd0975ddd06d38acf94c14196 /zen/dir_watcher.h
parent7.8 (diff)
downloadFreeFileSync-27286406235d3c5c51d890835f1168ddadf1c9bb.tar.gz
FreeFileSync-27286406235d3c5c51d890835f1168ddadf1c9bb.tar.bz2
FreeFileSync-27286406235d3c5c51d890835f1168ddadf1c9bb.zip
7.9
Diffstat (limited to 'zen/dir_watcher.h')
-rw-r--r--zen/dir_watcher.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zen/dir_watcher.h b/zen/dir_watcher.h
index 1d6d53cc..ddb3dbb9 100644
--- a/zen/dir_watcher.h
+++ b/zen/dir_watcher.h
@@ -50,10 +50,10 @@ public:
struct Entry
{
- Entry() : action_(ACTION_CREATE) {}
+ Entry() {}
Entry(ActionType action, const Zstring& filepath) : action_(action), filepath_(filepath) {}
- ActionType action_;
+ ActionType action_ = ACTION_CREATE;
Zstring filepath_;
};
bgstack15