diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2002-08-29 20:50:12 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2002-08-29 20:50:12 +0000 |
commit | ef5f2a85fd66b72e26f9c0e3ba6f12479ab85acf (patch) | |
tree | d7aa7e676349e0130edce19f61549274b8f9d25a /ace | |
parent | 07e21f0c269b080ab7bee2a2238485488deead46 (diff) | |
download | ATCD-ef5f2a85fd66b72e26f9c0e3ba6f12479ab85acf.tar.gz |
ChangeLogTag:Thu Aug 29 06:12:56 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Diffstat (limited to 'ace')
-rw-r--r-- | ace/Future.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Future.cpp b/ace/Future.cpp index d0c263ee473..3facf8fbcf1 100644 --- a/ace/Future.cpp +++ b/ace/Future.cpp @@ -184,9 +184,9 @@ ACE_Future_Rep<T>::set (const T &r, for (; iterator != end; - ++iterator) + iterator) { - OBSERVER *observer = *iterator; + OBSERVER *observer = *iterator++; observer->update (caller); } |