| 521 | } |
| 522 | |
| 523 | int ProfileObject::SortVector(POVector& foVect) { |
| 524 | std::sort(foVect.begin(), foVect.end(), &ProfileObject::ComparePO); |
| 525 | |
| 526 | return 0; |
| 527 | } |
| 528 | |
| 529 | bool ProfileObject::ComparePO(const ProfileObject* fo1, const ProfileObject* fo2) { |
| 530 | int res = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected