Changeset 19656
- Timestamp:
- 12/13/06 12:12:33 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/trunk/modules/tweek/tweek/CORBA/CorbaManager.cpp
r19540 r19656 127 127 } 128 128 } 129 catch (CORBA::ORB::InvalidName& ex) 130 { 131 boost::ignore_unused_variable_warning(ex); 132 129 catch (CORBA::ORB::InvalidName&) 130 { 133 131 // This should not happen! 134 132 vprDEBUG(vprDBG_ALL, vprDBG_CRITICAL_LVL) … … 280 278 // This will be raised if the IdUniqunessPolicy within our child POA is set 281 279 // to UNIQUE_ID. 282 catch (PortableServer::POA::ServantAlreadyActive& active_ex) 283 { 284 boost::ignore_unused_variable_warning(active_ex); 280 catch (PortableServer::POA::ServantAlreadyActive&) 281 { 285 282 vprDEBUG(tweekDBG_CORBA, vprDBG_WARNING_LVL) 286 283 << "WARNING: Servant already active within our POA\n" 287 284 << vprDEBUG_FLUSH; 288 285 } 289 catch (PortableServer::POA::WrongPolicy& policy_ex) 290 { 291 boost::ignore_unused_variable_warning(policy_ex); 286 catch (PortableServer::POA::WrongPolicy&) 287 { 292 288 status = false; 293 289 vprDEBUG(tweekDBG_CORBA, vprDBG_CRITICAL_LVL) … … 356 352 } 357 353 } 358 catch (CosNaming::NamingContext::AlreadyBound& ex) 359 { 360 boost::ignore_unused_variable_warning(ex); 354 catch (CosNaming::NamingContext::AlreadyBound&) 355 { 361 356 vprDEBUG(vprDBG_ALL, vprDBG_WARNING_LVL) 362 357 << "WARNING: Subject manager reference already bound!\n" … … 364 359 } 365 360 } 366 catch (CORBA::COMM_FAILURE& ex) 367 { 368 boost::ignore_unused_variable_warning(ex); 361 catch (CORBA::COMM_FAILURE&) 362 { 369 363 status = false; 370 364 vprDEBUG(vprDBG_ALL, vprDBG_WARNING_LVL) … … 451 445 policy_list); 452 446 } 453 catch (PortableServer::POA::AdapterAlreadyExists& ex) 454 { 455 boost::ignore_unused_variable_warning(ex); 447 catch (PortableServer::POA::AdapterAlreadyExists&) 448 { 456 449 status = false; 457 450 vprDEBUG(vprDBG_ALL, vprDBG_WARNING_LVL) … … 459 452 << vprDEBUG_FLUSH; 460 453 } 461 catch (PortableServer::POA::InvalidPolicy& ex) 462 { 463 boost::ignore_unused_variable_warning(ex); 454 catch (PortableServer::POA::InvalidPolicy&) 455 { 464 456 status = false; 465 457 vprDEBUG(vprDBG_ALL, vprDBG_WARNING_LVL)
