BIND 10 trac2157_2, updated. 0f4c8ad79bcdf9810013fa667dd04bf0e67c21b5 [2157] editorial: removed unnecessary '; '

BIND 10 source code commits bind10-changes at lists.isc.org
Fri Dec 21 16:42:29 UTC 2012


The branch, trac2157_2 has been updated
       via  0f4c8ad79bcdf9810013fa667dd04bf0e67c21b5 (commit)
      from  261d1e5735e818cbf12cd6d004faf0ccc86bdaf4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 0f4c8ad79bcdf9810013fa667dd04bf0e67c21b5
Author: JINMEI Tatuya <jinmei at isc.org>
Date:   Fri Dec 21 08:42:24 2012 -0800

    [2157] editorial: removed unnecessary ';'

-----------------------------------------------------------------------

Summary of changes:
 src/lib/statistics/counter.h |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/statistics/counter.h b/src/lib/statistics/counter.h
index b3f6f34..6ed05de 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



More information about the bind10-changes mailing list