| 38 | virtual ~SortTaskSet() {} |
| 39 | |
| 40 | void ExecuteRange(enki::TaskSetPartition p_Range, |
| 41 | uint32_t p_ThreadNum) override |
| 42 | { |
| 43 | _INTR_PROFILE_CPU("General", "Sort Job"); |
| 44 | |
| 45 | std::sort(_array->begin() + _start, _array->begin() + _end, _comparator); |
| 46 | }; |
| 47 | |
| 48 | ComparatorType _comparator; |
| 49 | _INTR_ARRAY(Type) * _array; |
nothing calls this directly
no outgoing calls
no test coverage detected