]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2157] editorial: removed unnecessary ';'
authorJINMEI Tatuya <jinmei@isc.org>
Fri, 21 Dec 2012 16:42:24 +0000 (08:42 -0800)
committerJINMEI Tatuya <jinmei@isc.org>
Fri, 21 Dec 2012 16:42:24 +0000 (08:42 -0800)
src/lib/statistics/counter.h

index b3f6f34450ba5afc5dc665b578c0a77e220b0e3e..6ed05dea0a2d9a22c0717ad817d30e5a38c0457d 100644 (file)
@@ -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