]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2157] minor editorial fixes: add \brief and an empty line for readability
authorJINMEI Tatuya <jinmei@isc.org>
Wed, 30 Jan 2013 04:16:09 +0000 (20:16 -0800)
committerJINMEI Tatuya <jinmei@isc.org>
Wed, 30 Jan 2013 04:16:09 +0000 (20:16 -0800)
src/lib/statistics/counter_dict.h

index 08a8b37de807d9eb50e5b4c4c149cd836687749e..98b0b81beed221b977f16729509e6966ecc49060 100644 (file)
@@ -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)
             {}