summaryrefslogtreecommitdiff
path: root/zen/dir_watcher.h
diff options
context:
space:
mode:
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