diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2005-02-18 09:07:14 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2005-02-18 09:07:14 +0000 |
commit | 6505e0e66092f5c22ab656946a800138897ddf4c (patch) | |
tree | 91ba7fc4584511f31379702bdcf543da966f7f78 /TAO/tao/UShortSeqC.cpp | |
parent | 088f6e83bd2ffc10f050df15282f9795ddbb02f6 (diff) | |
download | ATCD-6505e0e66092f5c22ab656946a800138897ddf4c.tar.gz |
ChangeLogTag: Fri Feb 18 17:04:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/UShortSeqC.cpp')
-rw-r--r-- | TAO/tao/UShortSeqC.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tao/UShortSeqC.cpp b/TAO/tao/UShortSeqC.cpp index f3cf5dcfc09..92565b8ebf5 100644 --- a/TAO/tao/UShortSeqC.cpp +++ b/TAO/tao/UShortSeqC.cpp @@ -41,7 +41,7 @@ #endif /* !defined INLINE */ // TAO_IDL - Generated from -// be\be_visitor_arg_traits.cpp:65 +// be\be_visitor_arg_traits.cpp:66 // Arg traits specializations. namespace TAO @@ -121,7 +121,7 @@ CORBA::Boolean operator<< ( return strm.write_ushort_array (_tao_sequence.get_buffer (), _tao_sequence.length ()); } - return 0; + return false; } CORBA::Boolean operator>> ( @@ -138,7 +138,7 @@ CORBA::Boolean operator>> ( // of the stream. (See bug 58.) if (_tao_seq_len > strm.length ()) { - return 0; + return false; } // Set the length of the sequence. @@ -147,7 +147,7 @@ CORBA::Boolean operator>> ( // If length is 0 we return true. if (0 >= _tao_seq_len) { - return 1; + return true; } // Retrieve all the elements. @@ -155,7 +155,7 @@ CORBA::Boolean operator>> ( } - return 0; + return false; } #endif /* _TAO_CDR_OP_CORBA_UShortSeq_CPP_ */ |