diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2003-05-01 18:39:12 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2003-05-01 18:39:12 +0000 |
commit | 3951e3cdee4d82bca868c1c5c0915dd869bcf482 (patch) | |
tree | 36cf78f519915042eca0bd1b2c863aa9daac19ac /TAO/tao/Any.cpp | |
parent | 097368aa15d8405cdf34c8f53e68aee63716c639 (diff) | |
download | ATCD-3951e3cdee4d82bca868c1c5c0915dd869bcf482.tar.gz |
ChangeLogTag:Thu May 1 11:25:42 2003 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'TAO/tao/Any.cpp')
-rw-r--r-- | TAO/tao/Any.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/Any.cpp b/TAO/tao/Any.cpp index f4d2b5acc09..c6af1f3cfa1 100644 --- a/TAO/tao/Any.cpp +++ b/TAO/tao/Any.cpp @@ -509,7 +509,7 @@ TAO::Unknown_IDL_Type::_tao_decode (TAO_InputCDR &cdr ACE_Message_Block (size + 2 * ACE_CDR::MAX_ALIGNMENT)); ACE_CDR::mb_align (this->cdr_); - ptr_arith_t offset = ptr_arith_t (begin) % ACE_CDR::MAX_ALIGNMENT; + ptrdiff_t offset = ptrdiff_t (begin) % ACE_CDR::MAX_ALIGNMENT; this->cdr_->rd_ptr (offset); this->cdr_->wr_ptr (offset + size); |