diff options
author | Max Kellermann <max@duempel.org> | 2013-11-28 11:50:54 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-11-28 11:50:54 +0100 |
commit | f90abe9530ef1075bc9b60e0f08f405d2d86f799 (patch) | |
tree | 60f4052123e03cd326ec64f4b6cd711784d651b2 /src/PlaylistState.hxx | |
parent | 46bab7e4b921b79924643bacd08dcd3d1404ceb6 (diff) | |
download | mpd-f90abe9530ef1075bc9b60e0f08f405d2d86f799.tar.gz mpd-f90abe9530ef1075bc9b60e0f08f405d2d86f799.tar.xz mpd-f90abe9530ef1075bc9b60e0f08f405d2d86f799.zip |
include cleanup using iwyu
Diffstat (limited to 'src/PlaylistState.hxx')
-rw-r--r-- | src/PlaylistState.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/PlaylistState.hxx b/src/PlaylistState.hxx index 01cc94d03..408113e49 100644 --- a/src/PlaylistState.hxx +++ b/src/PlaylistState.hxx @@ -32,12 +32,12 @@ struct PlayerControl; class TextFile; void -playlist_state_save(FILE *fp, const struct playlist &playlist, +playlist_state_save(FILE *fp, const playlist &playlist, PlayerControl &pc); bool playlist_state_restore(const char *line, TextFile &file, - struct playlist &playlist, PlayerControl &pc); + playlist &playlist, PlayerControl &pc); /** * Generates a hash number for the current state of the playlist and @@ -46,7 +46,7 @@ playlist_state_restore(const char *line, TextFile &file, * be saved. */ unsigned -playlist_state_get_hash(const struct playlist &playlist, +playlist_state_get_hash(const playlist &playlist, PlayerControl &c); #endif |