aboutsummaryrefslogtreecommitdiffstats
path: root/src/playlist/MemoryPlaylistProvider.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/playlist/MemoryPlaylistProvider.hxx')
-rw-r--r--src/playlist/MemoryPlaylistProvider.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/playlist/MemoryPlaylistProvider.hxx b/src/playlist/MemoryPlaylistProvider.hxx
index 246ffd10a..efbc46fe1 100644
--- a/src/playlist/MemoryPlaylistProvider.hxx
+++ b/src/playlist/MemoryPlaylistProvider.hxx
@@ -25,7 +25,7 @@
#include <forward_list>
-struct song;
+struct Song;
class MemoryPlaylistProvider : public playlist_provider {
std::forward_list<SongPointer> songs;
@@ -33,7 +33,7 @@ class MemoryPlaylistProvider : public playlist_provider {
public:
MemoryPlaylistProvider(std::forward_list<SongPointer> &&_songs);
- song *Read();
+ Song *Read();
};
#endif