diff options
Diffstat (limited to 'utility/sorting.hpp')
-rw-r--r-- | utility/sorting.hpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/utility/sorting.hpp b/utility/sorting.hpp deleted file mode 100644 index 0cb0eaf..0000000 --- a/utility/sorting.hpp +++ /dev/null @@ -1,12 +0,0 @@ -#ifndef SORTING_H -#define SORTING_H - -template<typename T> struct PtrSorter { - bool - operator()(const T & a, const T & b) const - { - return *a < *b; - } -}; - -#endif |