diff options
author | Max Kellermann <max@duempel.org> | 2014-02-07 20:27:24 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-07 20:27:24 +0100 |
commit | 8549ccfd8c24c5666435ac4dd00ba3c7d14e0351 (patch) | |
tree | 3b7820e956b3b494dff1a21be97baa311f1ff1cb /src/playlist/PlaylistRegistry.hxx | |
parent | ffd16b55a69a01b906805752acc11e26491138bc (diff) | |
download | mpd-8549ccfd8c24c5666435ac4dd00ba3c7d14e0351.tar.gz mpd-8549ccfd8c24c5666435ac4dd00ba3c7d14e0351.tar.xz mpd-8549ccfd8c24c5666435ac4dd00ba3c7d14e0351.zip |
playlist/CloseSongEnumerator: new wrapper class
Simplifies a lot of code, because we don't need to return both the
SongEnumerator and the InputStream.
Diffstat (limited to 'src/playlist/PlaylistRegistry.hxx')
-rw-r--r-- | src/playlist/PlaylistRegistry.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/playlist/PlaylistRegistry.hxx b/src/playlist/PlaylistRegistry.hxx index 0079fa68e..d8a24f4af 100644 --- a/src/playlist/PlaylistRegistry.hxx +++ b/src/playlist/PlaylistRegistry.hxx @@ -77,7 +77,6 @@ playlist_suffix_supported(const char *suffix); * @return a playlist, or nullptr on error */ SongEnumerator * -playlist_list_open_path(const char *path_fs, Mutex &mutex, Cond &cond, - InputStream **is_r); +playlist_list_open_path(const char *path_fs, Mutex &mutex, Cond &cond); #endif |