BIND 10 trac2157, updated. eae57882485d326d0150a41959820f25898f5311 [2157] minor editorial nits: s/Type &var/Type& var/ per conding guideline.
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Aug 24 22:46:00 UTC 2012
The branch, trac2157 has been updated
via eae57882485d326d0150a41959820f25898f5311 (commit)
from 8a001c349081b102849fc3566b57975ffd4629da (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 eae57882485d326d0150a41959820f25898f5311
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Fri Aug 24 15:45:28 2012 -0700
[2157] minor editorial nits: s/Type &var/Type& var/ per conding guideline.
-----------------------------------------------------------------------
Summary of changes:
src/bin/auth/auth_srv.cc | 2 +-
src/bin/auth/auth_srv.h | 2 +-
src/bin/auth/statistics.cc | 8 ++++----
src/bin/auth/statistics.h | 2 +-
4 files changed, 7 insertions(+), 7 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/bin/auth/auth_srv.cc b/src/bin/auth/auth_srv.cc
index 9221b64..9e23627 100644
--- a/src/bin/auth/auth_srv.cc
+++ b/src/bin/auth/auth_srv.cc
@@ -895,7 +895,7 @@ bool AuthSrv::submitStatistics() const {
}
const Counters::item_tree_type
-AuthSrv::get(const Counters::item_node_name_set_type &trees) const {
+AuthSrv::get(const Counters::item_node_name_set_type& trees) const {
return (impl_->counters_.get(trees));
}
diff --git a/src/bin/auth/auth_srv.h b/src/bin/auth/auth_srv.h
index 26b6a6a..e2817f8 100644
--- a/src/bin/auth/auth_srv.h
+++ b/src/bin/auth/auth_srv.h
@@ -261,7 +261,7 @@ public:
///
/// \return a tree of statistics items.
const isc::auth::statistics::Counters::item_tree_type get(
- const isc::auth::statistics::Counters::item_node_name_set_type &items)
+ const isc::auth::statistics::Counters::item_node_name_set_type& items)
const;
/// \brief Dump the values of counters.
diff --git a/src/bin/auth/statistics.cc b/src/bin/auth/statistics.cc
index e2df81a..2a9a058 100644
--- a/src/bin/auth/statistics.cc
+++ b/src/bin/auth/statistics.cc
@@ -50,8 +50,8 @@ using namespace isc::data;
using isc::statistics::Counter;
using isc::auth::statistics::Counters;
void
-fillNodes(const Counter &counter, const char *nodename[], const size_t size,
- const std::string &prefix, Counters::item_tree_type &trees)
+fillNodes(const Counter& counter, const char* nodename[], const size_t size,
+ const std::string& prefix, Counters::item_tree_type& trees)
{
for (size_t i = 0; i < size; ++i) {
trees->set (prefix + nodename[i],
@@ -369,7 +369,7 @@ CountersImpl::registerStatisticsValidator
}
const Counters::item_tree_type
-CountersImpl::get(const Counters::item_node_name_set_type &trees) const {
+CountersImpl::get(const Counters::item_node_name_set_type& trees) const {
using namespace isc::data;
Counters::item_tree_type item_tree = Element::createMap();
@@ -416,7 +416,7 @@ Counters::inc(const QRAttributes& qrattrs, const Message& response) {
}
const Counters::item_tree_type
-Counters::get(const Counters::item_node_name_set_type &trees) const {
+Counters::get(const Counters::item_node_name_set_type& trees) const {
return (impl_->get(trees));
}
diff --git a/src/bin/auth/statistics.h b/src/bin/auth/statistics.h
index 48b423b..c66e2e9 100644
--- a/src/bin/auth/statistics.h
+++ b/src/bin/auth/statistics.h
@@ -209,7 +209,7 @@ public:
/// \throw bad_alloc
///
/// \return a tree of statistics items.
- const item_tree_type get(const item_node_name_set_type &items) const;
+ const item_tree_type get(const item_node_name_set_type& items) const;
/// \brief Dump all of the counters.
///
More information about the bind10-changes
mailing list