Add a comment to List::isEmpty().

This commit is contained in:
Tsuda Kageyu
2015-11-18 15:14:50 +09:00
parent 4f3844114a
commit 0f00dfc778

View File

@ -146,8 +146,16 @@ namespace TagLib {
/*!
* Returns the number of elements in the list.
*
* \see isEmpty()
*/
uint size() const;
/*!
* Returns whether or not the list is empty.
*
* \see size()
*/
bool isEmpty() const;
/*!