From 0f00dfc778483c3ae8a01799947a24ccbab934ed Mon Sep 17 00:00:00 2001 From: Tsuda Kageyu Date: Wed, 18 Nov 2015 15:14:50 +0900 Subject: [PATCH] Add a comment to List::isEmpty(). --- taglib/toolkit/tlist.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/taglib/toolkit/tlist.h b/taglib/toolkit/tlist.h index 4277a182..7375d752 100644 --- a/taglib/toolkit/tlist.h +++ b/taglib/toolkit/tlist.h @@ -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; /*!