summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/tao/PollableC.cpp4
2 files changed, 10 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 0ef1519645c..5de95cc0c02 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Fri Aug 29 07:45:30 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * tao/PollableC.cpp:
+
+ Fixed two occurrences of 'const const' in method signatures.
+ Thanks to Johnny Willemsen <jwillemsen@remedy.nl> for
+ pointing out the problem.
+
Thu Aug 28 22:04:40 2003 Ossama Othman <ossama@dre.vanderbilt.edu>
* tao/IOP_IORC.h:
diff --git a/TAO/tao/PollableC.cpp b/TAO/tao/PollableC.cpp
index bace04aea97..4f4d1650bfe 100644
--- a/TAO/tao/PollableC.cpp
+++ b/TAO/tao/PollableC.cpp
@@ -646,7 +646,7 @@ CORBA::PollableSet::NoPossiblePollable::_tao_duplicate (void) const
return result;
}
-void CORBA::PollableSet::NoPossiblePollable::_raise (void) const const
+void CORBA::PollableSet::NoPossiblePollable::_raise (void) const
{
TAO_RAISE (*this);
}
@@ -731,7 +731,7 @@ CORBA::PollableSet::UnknownPollable::_tao_duplicate (void) const
return result;
}
-void CORBA::PollableSet::UnknownPollable::_raise (void) const const
+void CORBA::PollableSet::UnknownPollable::_raise (void) const
{
TAO_RAISE (*this);
}