| 320 | |
| 321 | namespace { |
| 322 | ACE_CDR::ULong to_uint(const NameHash& nh) |
| 323 | { |
| 324 | return static_cast<ACE_CDR::ULong>(nh[0]) << 24 | |
| 325 | static_cast<ACE_CDR::ULong>(nh[1]) << 16 | |
| 326 | static_cast<ACE_CDR::ULong>(nh[2]) << 8 | |
| 327 | static_cast<ACE_CDR::ULong>(nh[3]); |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | /** |
no outgoing calls
no test coverage detected