summaryrefslogtreecommitdiff
path: root/TAO/tao/Sequence.h
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>1998-07-03 21:35:13 +0000
committerSteve Huston <shuston@riverace.com>1998-07-03 21:35:13 +0000
commit6dc6a9ac716a9c200c1032f21e896e0cb5748887 (patch)
tree65b7e665283021417fd11c11dea2b8a9e8b26024 /TAO/tao/Sequence.h
parent937b0499ea83f482738b55e48ac3d1355a881dab (diff)
downloadATCD-6dc6a9ac716a9c200c1032f21e896e0cb5748887.tar.gz
Corrected Sequence<CORBA::Octet> specialization to compile clean on AIX as well
as HP and Solaris.
Diffstat (limited to 'TAO/tao/Sequence.h')
-rw-r--r--TAO/tao/Sequence.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/TAO/tao/Sequence.h b/TAO/tao/Sequence.h
index 8b338138472..28b57018333 100644
--- a/TAO/tao/Sequence.h
+++ b/TAO/tao/Sequence.h
@@ -370,7 +370,7 @@ class TAO_Export TAO_Unbounded_Sequence<CORBA::Octet> : public TAO_Unbounded_Bas
// An unbounded sequence of Octets
//
// = DESCRIPTION
- // Marshalling and demarshalling cctet sequences can be highly
+ // Marshalling and demarshalling octet sequences can be highly
// optimize, for instance at demarshalling we don't require a copy
// from the CDR buffer to the octet sequence buffer, we can simply
// hold a duplicate of the underlying ACE_Message_Block.
@@ -381,17 +381,17 @@ public:
friend class TAO_Marshal_Sequence;
// For efficient marshalling and demarshalling.
- TAO_Unbounded_Sequence<CORBA::Octet> (void);
- TAO_Unbounded_Sequence<CORBA::Octet> (CORBA::ULong max);
- TAO_Unbounded_Sequence<CORBA::Octet> (CORBA::ULong max,
- CORBA::ULong length,
- CORBA::Octet *data,
- CORBA::Boolean release = 0);
+ TAO_Unbounded_Sequence (void);
+ TAO_Unbounded_Sequence (CORBA::ULong max);
+ TAO_Unbounded_Sequence (CORBA::ULong max,
+ CORBA::ULong length,
+ CORBA::Octet *data,
+ CORBA::Boolean release = 0);
~TAO_Unbounded_Sequence (void);
// see TAO_Unbounded_Sequence in "Sequence_T.h"
- TAO_Unbounded_Sequence<CORBA::Octet> (CORBA::ULong length,
- const ACE_Message_Block* mb);
+ TAO_Unbounded_Sequence (CORBA::ULong length,
+ const ACE_Message_Block* mb);
// Create a sequence of octets from a single message block (i.e. it
// ignores any chaining in the meesage block).