| 213 | |
| 214 | |
| 215 | int FileObject::Sort() { |
| 216 | return FileObject::SortVector(m_children); |
| 217 | } |
| 218 | |
| 219 | int FileObject::SortVector(FOVector & foVect) { |
| 220 | std::sort(foVect.begin(), foVect.end(), &FileObject::CompareFO); |
nothing calls this directly
no outgoing calls
no test coverage detected