BIND 10 trac1206, updated. 00f4c38428153bb5ad99ba1cc40e9a204266dace [1206] new stuff makes some of the old (soon to be removed) fail cppcheck
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Oct 3 16:17:45 UTC 2011
The branch, trac1206 has been updated
via 00f4c38428153bb5ad99ba1cc40e9a204266dace (commit)
from f7bb760f4d8290d52959ea83b090d1877e4ac9ee (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 00f4c38428153bb5ad99ba1cc40e9a204266dace
Author: Jelte Jansen <jelte at isc.org>
Date: Mon Oct 3 18:17:22 2011 +0200
[1206] new stuff makes some of the old (soon to be removed) fail cppcheck
-----------------------------------------------------------------------
Summary of changes:
src/lib/datasrc/data_source.h | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/datasrc/data_source.h b/src/lib/datasrc/data_source.h
index ff695da..a7a15a9 100644
--- a/src/lib/datasrc/data_source.h
+++ b/src/lib/datasrc/data_source.h
@@ -184,9 +184,9 @@ public:
void setClass(isc::dns::RRClass& c) { rrclass = c; }
void setClass(const isc::dns::RRClass& c) { rrclass = c; }
- Result init() { return (NOT_IMPLEMENTED); }
- Result init(isc::data::ConstElementPtr config);
- Result close() { return (NOT_IMPLEMENTED); }
+ virtual Result init() { return (NOT_IMPLEMENTED); }
+ virtual Result init(isc::data::ConstElementPtr config);
+ virtual Result close() { return (NOT_IMPLEMENTED); }
virtual Result findRRset(const isc::dns::Name& qname,
const isc::dns::RRClass& qclass,
@@ -351,7 +351,7 @@ public:
/// \brief Returns the best enclosing zone name found for the given
// name and RR class so far.
- ///
+ ///
/// \return A pointer to the zone apex \c Name, NULL if none found yet.
///
/// This method never throws an exception.
@@ -413,6 +413,6 @@ private:
#endif
-// Local Variables:
+// Local Variables:
// mode: c++
-// End:
+// End:
More information about the bind10-changes
mailing list