summaryrefslogtreecommitdiff
path: root/ace/Future_Set.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Future_Set.cpp')
-rw-r--r--ace/Future_Set.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Future_Set.cpp b/ace/Future_Set.cpp
index 3d04fe9ed5d..3bd4abe8156 100644
--- a/ace/Future_Set.cpp
+++ b/ace/Future_Set.cpp
@@ -71,7 +71,7 @@ ACE_Future_Set<T>::insert (ACE_Future<T> &future)
// If a new map entry was created, then attach to the future,
// otherwise we were already attached to the future or some error
// occurred so just delete the future holder.
- if ( result == 0 )
+ if (result == 0)
// Attach ourself to the ACE_Futures list of observer
future.attach (this);
else