From: JINMEI Tatuya Date: Wed, 30 Jan 2013 04:16:09 +0000 (-0800) Subject: [2157] minor editorial fixes: add \brief and an empty line for readability X-Git-Tag: bind10-1.1.0beta1-release~85^2~5^2~21 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a1705370803388f15833e588db710fe520fda751;p=thirdparty%2Fkea.git [2157] minor editorial fixes: add \brief and an empty line for readability --- diff --git a/src/lib/statistics/counter_dict.h b/src/lib/statistics/counter_dict.h index 08a8b37de8..98b0b81bee 100644 --- a/src/lib/statistics/counter_dict.h +++ b/src/lib/statistics/counter_dict.h @@ -138,15 +138,16 @@ public: boost::forward_traversal_tag> { public: - /// The constructor. + /// \brief The constructor. /// /// This constructor is mostly exception free. But it may still /// throw a standard exception if memory allocation fails /// inside the method. ConstIterator() {} - /// Constructor from implementation detail DictionaryMap::const_iterator - ConstIterator( - DictionaryMap::const_iterator iterator) : + + /// \brief Constructor from implementation detail + /// DictionaryMap::const_iterator + ConstIterator(DictionaryMap::const_iterator iterator) : iterator_(iterator) {}