diff options
author | Max Kellermann <max@duempel.org> | 2014-02-07 22:17:27 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-07 22:17:27 +0100 |
commit | 05ee057db55678d3fccbb10d02ee9d41879eef56 (patch) | |
tree | 113c2292aceff14245f9ee5445616bbfcc3c6f00 /src/db | |
parent | 297e2747f350aa0fbd941d4fccb0d3e09e3a49a9 (diff) | |
download | mpd-05ee057db55678d3fccbb10d02ee9d41879eef56.tar.gz mpd-05ee057db55678d3fccbb10d02ee9d41879eef56.tar.xz mpd-05ee057db55678d3fccbb10d02ee9d41879eef56.zip |
InotifyUpdate: remove unnecessary #ifdefs
Diffstat (limited to 'src/db')
-rw-r--r-- | src/db/update/InotifyUpdate.hxx | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/db/update/InotifyUpdate.hxx b/src/db/update/InotifyUpdate.hxx index 0260a4ff5..d378770c0 100644 --- a/src/db/update/InotifyUpdate.hxx +++ b/src/db/update/InotifyUpdate.hxx @@ -26,28 +26,10 @@ class EventLoop; class UpdateService; -#ifdef HAVE_INOTIFY_INIT - void mpd_inotify_init(EventLoop &loop, UpdateService &update, unsigned max_depth); void mpd_inotify_finish(void); -#else /* !HAVE_INOTIFY_INIT */ - -static inline void -mpd_inotify_init(gcc_unused EventLoop &loop, - gcc_unused UpdateService &update, - gcc_unused unsigned max_depth) -{ -} - -static inline void -mpd_inotify_finish(void) -{ -} - -#endif /* !HAVE_INOTIFY_INIT */ - #endif |