Commit 1de68b72 authored by Max Kellermann's avatar Max Kellermann

tag/Tag: use C++11 initializers

parent 720df085
...@@ -37,25 +37,24 @@ struct Tag { ...@@ -37,25 +37,24 @@ struct Tag {
* The duration of the song. A negative value means that the * The duration of the song. A negative value means that the
* length is unknown. * length is unknown.
*/ */
SignedSongTime duration; SignedSongTime duration = SignedSongTime::Negative();
/** /**
* Does this file have an embedded playlist (e.g. embedded CUE * Does this file have an embedded playlist (e.g. embedded CUE
* sheet)? * sheet)?
*/ */
bool has_playlist; bool has_playlist = false;
/** the total number of tag items in the #items array */ /** the total number of tag items in the #items array */
unsigned short num_items; unsigned short num_items = 0;
/** an array of tag items */ /** an array of tag items */
TagItem **items; TagItem **items = nullptr;
/** /**
* Create an empty tag. * Create an empty tag.
*/ */
Tag():duration(SignedSongTime::Negative()), has_playlist(false), Tag() = default;
num_items(0), items(nullptr) {}
Tag(const Tag &other); Tag(const Tag &other);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment