summaryrefslogtreecommitdiff
path: root/TAO/tao/WrongTransactionC.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-01-24 13:42:44 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-01-24 13:42:44 +0000
commit1ce4bfe566cacc77785f53a0133d4c40f1d4146b (patch)
tree847cc2e50062a205e1c6b9d74eafe66e135e9b73 /TAO/tao/WrongTransactionC.cpp
parent58c2d4f3d71d8c8258a9e659a37ca03e5f4bc5cf (diff)
downloadATCD-1ce4bfe566cacc77785f53a0133d4c40f1d4146b.tar.gz
Wed Jan 24 12:25:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/WrongTransactionC.cpp')
-rw-r--r--TAO/tao/WrongTransactionC.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/TAO/tao/WrongTransactionC.cpp b/TAO/tao/WrongTransactionC.cpp
index 8c7368c54cf..ad6e5150b31 100644
--- a/TAO/tao/WrongTransactionC.cpp
+++ b/TAO/tao/WrongTransactionC.cpp
@@ -127,7 +127,6 @@ void CORBA::WrongTransaction::_raise (void) const
void CORBA::WrongTransaction::_tao_encode (
TAO_OutputCDR &cdr
- ACE_ENV_ARG_DECL
) const
{
if (cdr << *this)
@@ -135,12 +134,11 @@ void CORBA::WrongTransaction::_tao_encode (
return;
}
- ACE_THROW (CORBA::MARSHAL ());
+ throw ::CORBA::MARSHAL ();
}
void CORBA::WrongTransaction::_tao_decode (
TAO_InputCDR &cdr
- ACE_ENV_ARG_DECL
)
{
if (cdr >> *this)
@@ -148,7 +146,7 @@ void CORBA::WrongTransaction::_tao_decode (
return;
}
- ACE_THROW (CORBA::MARSHAL ());
+ throw ::CORBA::MARSHAL ();
}
// TAO extension - the virtual _type method.