| 2170 | Region<0> narrow; |
| 2171 | |
| 2172 | void Calculate(std::vector<unsigned int>& bytes) |
| 2173 | { |
| 2174 | std::sort(bytes.begin(), bytes.end()); |
| 2175 | |
| 2176 | broad.Calculate(bytes); |
| 2177 | mid.Calculate(bytes); |
| 2178 | narrow.Calculate(bytes); |
| 2179 | } |
| 2180 | |
| 2181 | TieredRegion() |
| 2182 | { |
no test coverage detected