summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Log/Log_Constraint_Visitors.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Log/Log_Constraint_Visitors.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Log/Log_Constraint_Visitors.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Log/Log_Constraint_Visitors.cpp b/TAO/orbsvcs/orbsvcs/Log/Log_Constraint_Visitors.cpp
index 04bf648e406..14722221752 100644
--- a/TAO/orbsvcs/orbsvcs/Log/Log_Constraint_Visitors.cpp
+++ b/TAO/orbsvcs/orbsvcs/Log/Log_Constraint_Visitors.cpp
@@ -270,7 +270,7 @@ TAO_Log_Constraint_Visitor::visit_union_pos (
return -1;
}
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
return -1;
}
@@ -348,7 +348,7 @@ TAO_Log_Constraint_Visitor::visit_component_pos (TAO_ETCL_Component_Pos *pos)
return comp->accept (this);
}
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
return -1;
}
@@ -469,7 +469,7 @@ TAO_Log_Constraint_Visitor::visit_component_array (
return comp->accept (this);
}
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
return -1;
}
@@ -532,7 +532,7 @@ TAO_Log_Constraint_Visitor::visit_special (TAO_ETCL_Special *special)
return -1;
}
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
return -1;
}
@@ -624,7 +624,7 @@ TAO_Log_Constraint_Visitor::visit_default (TAO_ETCL_Default *def)
TAO_ETCL_Literal_Constraint default_index_value (default_index);
return (disc == default_index_value);
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
return -1;
}
@@ -951,7 +951,7 @@ TAO_Log_Constraint_Visitor::visit_in (
CORBA::TypeCode_var tc = component->type ();
kind = TAO_DynAnyFactory::unalias (tc.in ());
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
return return_value;
}
@@ -1044,7 +1044,7 @@ TAO_Log_Constraint_Visitor::sequence_does_contain (
}
}
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
return 0;
}
@@ -1091,7 +1091,7 @@ TAO_Log_Constraint_Visitor::array_does_contain (
}
}
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
return 0;
}
@@ -1140,7 +1140,7 @@ TAO_Log_Constraint_Visitor::struct_does_contain (
}
}
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
return 0;
}
@@ -1181,7 +1181,7 @@ TAO_Log_Constraint_Visitor::union_does_contain (
return (item == element);
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
return 0;
}