[svn] commit: r1032 - /trunk/src/lib/dns/cpp/rrsetlist.h
BIND 10 source code commits
bind10-changes at lists.isc.org
Sat Feb 27 22:14:08 UTC 2010
Author: jinmei
Date: Sat Feb 27 22:14:08 2010
New Revision: 1032
Log:
made copy ctor and operator= private, assuming that's the intent.
Modified:
trunk/src/lib/dns/cpp/rrsetlist.h
Modified: trunk/src/lib/dns/cpp/rrsetlist.h
==============================================================================
--- trunk/src/lib/dns/cpp/rrsetlist.h (original)
+++ trunk/src/lib/dns/cpp/rrsetlist.h Sat Feb 27 22:14:08 2010
@@ -76,7 +76,11 @@
};
class RRsetList {
+private:
+ RRsetList(const RRsetList& source);
+ RRsetList& operator=(const RRsetList& source);
public:
+ RRsetList() {}
void addRRset(RRsetPtr new_rrsetptr);
RRsetPtr findRRset(const RRType& rrtype,
const RRClass& rrclass = RRClass::IN());
More information about the bind10-changes
mailing list