summaryrefslogtreecommitdiff
path: root/TAO/tao/Generic_Sequence_T.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-01-20 06:20:57 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-01-20 06:20:57 +0000
commita4554faa53520455b851ad81acdddd56baffd79b (patch)
treef7f261e42cbce60d6400bb1c01bd2f400673383b /TAO/tao/Generic_Sequence_T.h
parent527ea74df1f78d87771dd0b30ddff5be1f640b06 (diff)
downloadATCD-a4554faa53520455b851ad81acdddd56baffd79b.tar.gz
Tue Jan 20 06:18:24 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Value_Traits_T.h: Deliver dummy release_range to resolve compile errors
Diffstat (limited to 'TAO/tao/Generic_Sequence_T.h')
-rw-r--r--TAO/tao/Generic_Sequence_T.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/Generic_Sequence_T.h b/TAO/tao/Generic_Sequence_T.h
index 69fd49399e8..4e935df6b0e 100644
--- a/TAO/tao/Generic_Sequence_T.h
+++ b/TAO/tao/Generic_Sequence_T.h
@@ -164,13 +164,13 @@ public:
/// Set a new length for the sequence
void length(CORBA::ULong length)
{
- if (length <= maximum_ || length <= length_)
+ if (length <= maximum_ || length <= length_)
{
if (buffer_ == 0)
{
buffer_ = allocbuf(maximum_);
release_ = true;
- }
+ }
if (length < length_)
{