summaryrefslogtreecommitdiff
path: root/TAO/tao/Unbounded_Object_Reference_Sequence_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Unbounded_Object_Reference_Sequence_T.h')
-rw-r--r--TAO/tao/Unbounded_Object_Reference_Sequence_T.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/Unbounded_Object_Reference_Sequence_T.h b/TAO/tao/Unbounded_Object_Reference_Sequence_T.h
index 3bfc59f384c..33c1ae24433 100644
--- a/TAO/tao/Unbounded_Object_Reference_Sequence_T.h
+++ b/TAO/tao/Unbounded_Object_Reference_Sequence_T.h
@@ -107,7 +107,7 @@ public:
implementation_type::freebuf(buffer);
}
-#ifdef ACE_HAS_STDCPP_STL_INCLUDES
+#if TAO_HAS_SEQUENCE_ITERATORS
///
/// Additions to support iterator semantics for TAO unbounded object reference
@@ -160,7 +160,7 @@ public:
// of the sequence.
reverse_iterator rend (void)
{
- return impl_.end ();
+ return impl_.rend ();
}
// Get a const reverse iterator that points to one before the
@@ -170,7 +170,7 @@ public:
return impl_.rend ();
}
-#endif /* ACE_HAS_STDCPP_STL_INCLUDES */
+#endif /* TAO_HAS_SEQUENCE_ITERATORS */
private:
implementation_type impl_;