| 434 | Counter(const Counter& r) : value(r.value) { count++; } |
| 435 | void operator=(const Counter& r) { value = r.value; } |
| 436 | int compare(const Counter& r) const { return ::compare(value, r.value); } |
| 437 | bool operator<(const Counter& r) const { return value < r.value; } |
| 438 | }; |
| 439 | IndexedSet<Counter, NoMetric> mySet; |
no test coverage detected