summaryrefslogtreecommitdiff
path: root/TAO
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
commitbbe9ea3f1f3ff2c90c0ed057e04c046a750043a8 (patch)
tree65b7e665283021417fd11c11dea2b8a9e8b26024 /TAO
parentec3757d5f41f6b597750047c284e6a582889956f (diff)
downloadATCD-bbe9ea3f1f3ff2c90c0ed057e04c046a750043a8.tar.gz
Corrected Sequence<CORBA::Octet> specialization to compile clean on AIX as well
as HP and Solaris.
Diffstat (limited to 'TAO')
-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).