From: Scott Wheeler Date: Tue, 18 Oct 2005 12:33:48 +0000 (+0000) Subject: SVN_SILENT a couple of missing docs X-Git-Tag: v1.5~253 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f9c5ecaf53d64cadfdd6bd5fff086d83759cc09d;p=taglib SVN_SILENT a couple of missing docs git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@471683 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- diff --git a/toolkit/tstring.h b/toolkit/tstring.h index 0d810108..37edfec2 100644 --- a/toolkit/tstring.h +++ b/toolkit/tstring.h @@ -395,22 +395,29 @@ namespace TagLib { /*! * \relates TagLib::String + * + * Concatenates \a s1 and \a s2 and returns the result as a string. */ const TagLib::String operator+(const TagLib::String &s1, const TagLib::String &s2); /*! * \relates TagLib::String + * + * Concatenates \a s1 and \a s2 and returns the result as a string. */ const TagLib::String operator+(const char *s1, const TagLib::String &s2); /*! * \relates TagLib::String + * + * Concatenates \a s1 and \a s2 and returns the result as a string. */ const TagLib::String operator+(const TagLib::String &s1, const char *s2); /*! * \relates TagLib::String + * * Send the string to an output stream. */ std::ostream &operator<<(std::ostream &s, const TagLib::String &str);