[svn] commit: r2209 - /trunk/src/lib/dns/rrsetlist.cc
BIND 10 source code commits
bind10-changes at lists.isc.org
Tue Jun 22 04:24:46 UTC 2010
Author: jinmei
Date: Tue Jun 22 04:24:46 2010
New Revision: 2209
Log:
minor style fixes on brace positions.
trivial, skipping review.
Modified:
trunk/src/lib/dns/rrsetlist.cc
Modified: trunk/src/lib/dns/rrsetlist.cc
==============================================================================
--- trunk/src/lib/dns/rrsetlist.cc (original)
+++ trunk/src/lib/dns/rrsetlist.cc Tue Jun 22 04:24:46 2010
@@ -29,8 +29,7 @@
namespace dns {
void
-RRsetList::addRRset(RRsetPtr rrsetptr)
-{
+RRsetList::addRRset(RRsetPtr rrsetptr) {
ConstRRsetPtr rrset_found = findRRset(rrsetptr->getType(),
rrsetptr->getClass());
if (rrset_found != NULL) {
@@ -42,8 +41,7 @@
}
RRsetPtr
-RRsetList::findRRset(const RRType& rrtype, const RRClass& rrclass)
-{
+RRsetList::findRRset(const RRType& rrtype, const RRClass& rrclass) {
BOOST_FOREACH(RRsetPtr rrsetptr, rrsets_) {
if ((rrsetptr->getClass() == rrclass) &&
(rrsetptr->getType() == rrtype)) {
More information about the bind10-changes
mailing list