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 28396ae3..5676555f 100644
--- a/zen/dir_watcher.h
+++ b/zen/dir_watcher.h
@@ -66,8 +66,8 @@ private:
const Zstring baseDirPath;
- struct Pimpl;
- std::unique_ptr<Pimpl> pimpl_;
+ struct Impl;
+ const std::unique_ptr<Impl> pimpl_;
};
}
bgstack15