Browse Source

[2157] editorial: removed unnecessary ';'

JINMEI Tatuya 12 years ago
parent
commit
0f4c8ad79b
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/lib/statistics/counter.h

+ 3 - 3
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