diff options
author | Daniel Wilhelm <daniel@wili.li> | 2016-03-16 21:33:19 +0100 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2016-03-16 21:33:19 +0100 |
commit | 27286406235d3c5c51d890835f1168ddadf1c9bb (patch) | |
tree | ce7dc9bc76092fccd0975ddd06d38acf94c14196 /zen/dir_watcher.h | |
parent | 7.8 (diff) | |
download | FreeFileSync-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.h | 4 |
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_; }; |