tag/Tag: use C++11 initializers

This commit is contained in:
Max Kellermann 2018-01-20 19:39:06 +01:00
parent 720df085e5
commit 1de68b72b9
1 changed files with 5 additions and 6 deletions

View File

@ -37,25 +37,24 @@ struct Tag {
* The duration of the song. A negative value means that the
* length is unknown.
*/
SignedSongTime duration;
SignedSongTime duration = SignedSongTime::Negative();
/**
* Does this file have an embedded playlist (e.g. embedded CUE
* sheet)?
*/
bool has_playlist;
bool has_playlist = false;
/** the total number of tag items in the #items array */
unsigned short num_items;
unsigned short num_items = 0;
/** an array of tag items */
TagItem **items;
TagItem **items = nullptr;
/**
* Create an empty tag.
*/
Tag():duration(SignedSongTime::Negative()), has_playlist(false),
num_items(0), items(nullptr) {}
Tag() = default;
Tag(const Tag &other);