From: JINMEI Tatuya Date: Fri, 21 Dec 2012 16:42:24 +0000 (-0800) Subject: [2157] editorial: removed unnecessary ';' X-Git-Tag: bind10-1.1.0beta1-release~85^2~5^2~64 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f4c8ad79bcdf9810013fa667dd04bf0e67c21b5;p=thirdparty%2Fkea.git [2157] editorial: removed unnecessary ';' --- diff --git a/src/lib/statistics/counter.h b/src/lib/statistics/counter.h index b3f6f34450..6ed05dea0a 100644 --- a/src/lib/statistics/counter.h +++ b/src/lib/statistics/counter.h @@ -52,7 +52,7 @@ public: if (items == 0) { isc_throw(isc::InvalidParameter, "Items must not be 0"); } - }; + } /// \brief Increment a counter item specified with \a type. /// @@ -65,7 +65,7 @@ public: } ++counters_.at(type); return; - }; + } /// \brief Get the value of a counter item specified with \a type. /// @@ -77,7 +77,7 @@ public: isc_throw(isc::OutOfRange, "Counter type is out of range"); } return (counters_.at(type)); - }; + } }; } // namespace statistics