summaryrefslogtreecommitdiff
path: root/TAO/tao/AnyTypeCode/Any_SystemException.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/AnyTypeCode/Any_SystemException.cpp')
-rw-r--r--TAO/tao/AnyTypeCode/Any_SystemException.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/AnyTypeCode/Any_SystemException.cpp b/TAO/tao/AnyTypeCode/Any_SystemException.cpp
index 820e411234e..ee0c4633a72 100644
--- a/TAO/tao/AnyTypeCode/Any_SystemException.cpp
+++ b/TAO/tao/AnyTypeCode/Any_SystemException.cpp
@@ -145,7 +145,7 @@ TAO::Any_SystemException::extract (const CORBA::Any & any,
return true;
}
}
- catch ( ::CORBA::Exception&)
+ catch (const ::CORBA::Exception&)
{
}
@@ -178,7 +178,7 @@ TAO::Any_SystemException::marshal_value (TAO_OutputCDR &cdr)
this->value_->_tao_encode (cdr);
return true;
}
- catch ( ::CORBA::Exception&)
+ catch (const ::CORBA::Exception&)
{
}
return false;
@@ -192,7 +192,7 @@ TAO::Any_SystemException::demarshal_value (TAO_InputCDR &cdr)
this->value_->_tao_decode (cdr);
return true;
}
- catch ( ::CORBA::Exception&)
+ catch (const ::CORBA::Exception&)
{
}
return false;