| 496 | namespace { |
| 497 | template <typename T> |
| 498 | void cmp(int& result, T a, T b) |
| 499 | { |
| 500 | if (a < b) { |
| 501 | result = -1; |
| 502 | } else if (a > b) { |
| 503 | result = 1; |
| 504 | } else { |
| 505 | result = 0; |
| 506 | } |
| 507 | } |
| 508 | |
| 509 | DDS::ReturnCode_t member_compare(int& result, |
| 510 | DDS::DynamicData_ptr a_data, DDS::MemberId a_id, |
no outgoing calls
no test coverage detected