mpd: Item: do not wrap Song in shared_ptr

This commit is contained in:
Andrzej Rybczak
2014-11-01 22:37:21 +01:00
parent 42bba40baf
commit 9a1afece86
6 changed files with 26 additions and 24 deletions

View File

@@ -168,7 +168,7 @@ private:
struct Item
{
std::shared_ptr<Song> song;
Song song;
ItemType type;
std::string name;
};