summaryrefslogtreecommitdiff
path: root/ace/Handle_Set.h
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>1999-04-02 18:42:22 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>1999-04-02 18:42:22 +0000
commitea6b03fcf86cb71b34001e0e404ad8da16ba336b (patch)
tree3b8280977b8a4b2555ade44f059028dba73615eb /ace/Handle_Set.h
parentaa45491f6ea45b7747cb296a25337cafa3ebbc10 (diff)
downloadATCD-ea6b03fcf86cb71b34001e0e404ad8da16ba336b.tar.gz
Changed assignment operators (operator=) to return a reference
to `*this' so that assignments may be chained.
Diffstat (limited to 'ace/Handle_Set.h')
-rw-r--r--ace/Handle_Set.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Handle_Set.h b/ace/Handle_Set.h
index 90515cdc298..197518f2673 100644
--- a/ace/Handle_Set.h
+++ b/ace/Handle_Set.h
@@ -76,7 +76,7 @@ public:
// <size_> == 0.
#if defined (ACE_HAS_BIG_FD_SET)
- void operator= (const ACE_Handle_Set &);
+ ACE_Handle_Set & operator= (const ACE_Handle_Set &);
// Assignment operator optimizes for cases where <size_> == 0.
#endif /* ACE_HAS_BIG_FD_SET */