summaryrefslogtreecommitdiff
path: root/TAO/tao/GIOP_Message_State.cpp
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2004-06-02 07:38:06 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2004-06-02 07:38:06 +0000
commit2f07894e38530ebc50073fc738c6f38f428cb9d4 (patch)
tree5d66542032fa0d8a6e6477f5044d305055fced07 /TAO/tao/GIOP_Message_State.cpp
parent26aef7fbb583ca26865956ce365312e536ea4997 (diff)
downloadATCD-2f07894e38530ebc50073fc738c6f38f428cb9d4.tar.gz
ChangeLogTag:Wed Jun 2 00:37:17 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'TAO/tao/GIOP_Message_State.cpp')
-rw-r--r--TAO/tao/GIOP_Message_State.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/GIOP_Message_State.cpp b/TAO/tao/GIOP_Message_State.cpp
index 7155026c59d..0e8edbf224d 100644
--- a/TAO/tao/GIOP_Message_State.cpp
+++ b/TAO/tao/GIOP_Message_State.cpp
@@ -284,14 +284,14 @@ TAO_GIOP_Message_State::read_ulong (char *rd_ptr)
#if !defined (ACE_DISABLE_SWAP_ON_READ)
if (!(this->byte_order_ != ACE_CDR_BYTE_ORDER))
{
- x = *ACE_reinterpret_cast (ACE_CDR::ULong*, buf);
+ x = *reinterpret_cast<ACE_CDR::ULong*> (buf);
}
else
{
- ACE_CDR::swap_4 (buf, ACE_reinterpret_cast (char*, &x));
+ ACE_CDR::swap_4 (buf, reinterpret_cast<char*> (&x));
}
#else
- x = *ACE_reinterpret_cast(ACE_CDR::ULong*, buf);
+ x = *reinterpret_cast<ACE_CDR::ULong*> (buf);
#endif /* ACE_DISABLE_SWAP_ON_READ */
return x;