summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-08-07 08:02:49 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-08-07 08:02:49 +0000
commit2fab1e6d71831d363c752c321dd802134bea047a (patch)
tree20a48bb9f46d7b295771d68012ed68d0f1bbc1da
parentd5248dad5c0f7787bd5c24bdf24ff412f1c5cc72 (diff)
downloadATCD-2fab1e6d71831d363c752c321dd802134bea047a.tar.gz
Fri Aug 4 08:02:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ACE/ChangeLog5
-rw-r--r--ACE/ace/Handle_Set.cpp8
-rw-r--r--ACE/ace/Handle_Set.h5
3 files changed, 5 insertions, 13 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 3ae7761b215..7374be39ae4 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,8 @@
+Mon Aug 7 08:02:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ace/Handle_Set.{h,cpp}:
+ Removed operator++, it is deprecated and nothing more then a noop
+
Fri Aug 4 07:57:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Asynch_IO.h:
diff --git a/ACE/ace/Handle_Set.cpp b/ACE/ace/Handle_Set.cpp
index 6528483e344..22ceaf66634 100644
--- a/ACE/ace/Handle_Set.cpp
+++ b/ACE/ace/Handle_Set.cpp
@@ -434,14 +434,6 @@ ACE_Handle_Set_Iterator::operator () (void)
#endif /* ACE_WIN32 */
}
-void
-ACE_Handle_Set_Iterator::operator++ (void)
-{
- ACE_TRACE ("ACE_Handle_Set_Iterator::operator++");
-
- // This is now a no-op.
-}
-
ACE_Handle_Set_Iterator::ACE_Handle_Set_Iterator (const ACE_Handle_Set &hs)
: handles_ (hs),
#if !defined (ACE_HAS_BIG_FD_SET) || defined (ACE_WIN32)
diff --git a/ACE/ace/Handle_Set.h b/ACE/ace/Handle_Set.h
index 023db731e57..83418060548 100644
--- a/ACE/ace/Handle_Set.h
+++ b/ACE/ace/Handle_Set.h
@@ -195,11 +195,6 @@ public:
*/
ACE_HANDLE operator () (void);
- /// This is a no-op and no longer does anything. It's only here for
- /// backwards compatibility.
- /// @deprecated
- void operator++ (void);
-
/// Dump the state of an object.
void dump (void) const;