| Index: src/core/SkTSort.h
|
| diff --git a/src/core/SkTSort.h b/src/core/SkTSort.h
|
| index a5865a289238194b23e983deaa72e8725276f5a9..027ea52a5eed2fc91899e9f671555a69351f498b 100644
|
| --- a/src/core/SkTSort.h
|
| +++ b/src/core/SkTSort.h
|
| @@ -207,14 +207,4 @@ template <typename T> void SkTQSort(T** left, T** right) {
|
| SkTQSort(left, right, SkTPointerCompareLT<T>());
|
| }
|
|
|
| -/** Adapts a tri-state SkTSearch comparison function to a bool less-than SkTSort functor */
|
| -template <typename T, int (COMPARE)(const T*, const T*)>
|
| -class SkTSearchCompareLTFunctor {
|
| -public:
|
| - bool operator()(const T& a, const T& b) {
|
| - return COMPARE(&a, &b) < 0;
|
| - }
|
| -};
|
| -
|
| -
|
| #endif
|
|
|