BIND 10 master, updated. 912b79387bbbe16f5a97513dce140d31917e091e [master] ensure consistency wrt class/struct between some declarations and definition. this suppresses some warnings from clang++. should be trivial, directly pusing.
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Apr 21 21:14:27 UTC 2011
The branch, master has been updated
via 912b79387bbbe16f5a97513dce140d31917e091e (commit)
from 823fa0556364ad5bdcd26cb7a42999d502f3af02 (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 912b79387bbbe16f5a97513dce140d31917e091e
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Thu Apr 21 14:13:41 2011 -0700
[master] ensure consistency wrt class/struct between some declarations and definition.
this suppresses some warnings from clang++. should be trivial, directly pusing.
-----------------------------------------------------------------------
Summary of changes:
src/lib/asiolink/interval_timer.h | 2 +-
src/lib/asiolink/io_service.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/asiolink/interval_timer.h b/src/lib/asiolink/interval_timer.h
index 0831d44..8de16cb 100644
--- a/src/lib/asiolink/interval_timer.h
+++ b/src/lib/asiolink/interval_timer.h
@@ -22,7 +22,7 @@
namespace isc {
namespace asiolink {
-struct IntervalTimerImpl;
+class IntervalTimerImpl;
/// \brief The \c IntervalTimer class is a wrapper for the ASIO
/// \c asio::deadline_timer class.
diff --git a/src/lib/asiolink/io_service.h b/src/lib/asiolink/io_service.h
index 438667c..75aaee6 100644
--- a/src/lib/asiolink/io_service.h
+++ b/src/lib/asiolink/io_service.h
@@ -22,7 +22,7 @@ namespace asio {
namespace isc {
namespace asiolink {
-struct IOServiceImpl;
+class IOServiceImpl;
/// \brief The \c IOService class is a wrapper for the ASIO \c io_service
/// class.
More information about the bind10-changes
mailing list