diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-04-02 18:42:22 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-04-02 18:42:22 +0000 |
commit | ea6b03fcf86cb71b34001e0e404ad8da16ba336b (patch) | |
tree | 3b8280977b8a4b2555ade44f059028dba73615eb /ace/Handle_Set.h | |
parent | aa45491f6ea45b7747cb296a25337cafa3ebbc10 (diff) | |
download | ATCD-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.h | 2 |
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 */ |