diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-26 20:25:15 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-26 20:25:15 +0000 |
commit | f3ec1b905961448460c093282126976e35e410b4 (patch) | |
tree | a8b8cbf9b688d6df226955bd785fe257c55930e8 /TAO/tao/skip.cpp | |
parent | 8605c4b5cfb078bc87120991274fd9d38bd315ac (diff) | |
download | ATCD-f3ec1b905961448460c093282126976e35e410b4.tar.gz |
Small modifications to get rid of all MSVC level 4 warnings.
Mostly casting return values from integer to CORBA::Boolean and
the like.
Diffstat (limited to 'TAO/tao/skip.cpp')
-rw-r--r-- | TAO/tao/skip.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/skip.cpp b/TAO/tao/skip.cpp index 83eba3cb119..22da1d525b8 100644 --- a/TAO/tao/skip.cpp +++ b/TAO/tao/skip.cpp @@ -560,7 +560,7 @@ TAO_Marshal_Sequence::skip (CORBA::TypeCode_ptr tc, while (bounds-- && continue_skipping == 1) { - continue_skipping = stream->skip (tc2, ACE_TRY_ENV); + continue_skipping = (CORBA::Boolean) stream->skip (tc2, ACE_TRY_ENV); ACE_CHECK_RETURN (CORBA::TypeCode::TRAVERSE_STOP); } if (continue_skipping) @@ -601,7 +601,7 @@ TAO_Marshal_Array::skip (CORBA::TypeCode_ptr tc, while (bounds-- && continue_skipping == 1) { - continue_skipping = stream->skip (tc2, ACE_TRY_ENV); + continue_skipping = (CORBA::Boolean) stream->skip (tc2, ACE_TRY_ENV); ACE_CHECK_RETURN (CORBA::TypeCode::TRAVERSE_STOP); } |