summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwolff1 <wolff1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-11-17 17:44:45 +0000
committerwolff1 <wolff1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-11-17 17:44:45 +0000
commitd9199e5164f7dabea399fc9035de0e0ac28c6d1a (patch)
treed5c78099006d9be3f35e1e4ef365388db51e13b2
parentb4ad88ffef6375edce308e0d7d611a971e406c6e (diff)
downloadATCD-d9199e5164f7dabea399fc9035de0e0ac28c6d1a.tar.gz
corrected operator* access to sequence_ member
-rw-r--r--TAO/tao/Unbounded_Basic_String_Sequence_T.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/Unbounded_Basic_String_Sequence_T.h b/TAO/tao/Unbounded_Basic_String_Sequence_T.h
index b1d7f6a1107..b4d419cc573 100644
--- a/TAO/tao/Unbounded_Basic_String_Sequence_T.h
+++ b/TAO/tao/Unbounded_Basic_String_Sequence_T.h
@@ -193,8 +193,8 @@ private:
{
// Access the underlying element in the sequence.
//return element_type (impl_[i], release());
- return element_type (this->sequence_[this->pos_],
- this->sequence_.release());
+ return element_type ((*(this->sequence_))[this->pos_],
+ this->sequence_->release());
}
/// Returns a const reference to the item contained at the current position
@@ -204,8 +204,8 @@ private:
{
// Access the underlying element in the sequence.
//return const_element_type (impl_[i], release());
- return const_element_type (this->sequence_[this->pos_],
- this->sequence_.release ());
+ return const_element_type ((*(this->sequence_))[this->pos_],
+ this->sequence_->release ());
}
*/