BIND 10 trac2956, updated. 3511d115d6565b995ec092037359933eecb7c704 [2956] Re-review comment addressed. Restored "const" function type on controller bool methods.
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Jun 7 10:24:08 UTC 2013
The branch, trac2956 has been updated
via 3511d115d6565b995ec092037359933eecb7c704 (commit)
from 031ae7d0a205b4a82593ba4767e8e4741b3f8081 (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 3511d115d6565b995ec092037359933eecb7c704
Author: Thomas Markwalder <tmark at isc.org>
Date: Fri Jun 7 06:22:44 2013 -0400
[2956] Re-review comment addressed. Restored "const" function type on
controller bool methods.
-----------------------------------------------------------------------
Summary of changes:
src/bin/d2/d_controller.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/bin/d2/d_controller.h b/src/bin/d2/d_controller.h
index 52a284d..05971fd 100644
--- a/src/bin/d2/d_controller.h
+++ b/src/bin/d2/d_controller.h
@@ -344,7 +344,7 @@ protected:
/// @brief Supplies whether or not the controller is in stand alone mode.
///
/// @return returns true if in stand alone mode, false otherwise
- bool isStandAlone() {
+ bool isStandAlone() const {
return (stand_alone_);
}
@@ -358,7 +358,7 @@ protected:
/// @brief Supplies whether or not verbose logging is enabled.
///
/// @return returns true if verbose logging is enabled.
- bool isVerbose() {
+ bool isVerbose() const {
return (verbose_);
}
More information about the bind10-changes
mailing list