summaryrefslogtreecommitdiff
path: root/utility/sorting.hpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-02-28 15:42:39 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2021-02-28 15:42:39 +0000
commitd63f5ce1cb86e69da28bd74b21e9452dbd88a38f (patch)
tree0c9495f8cb5af05e6068b69d5d57551cc2331a97 /utility/sorting.hpp
parentJust use addLinksBetween (diff)
downloadilt-d63f5ce1cb86e69da28bd74b21e9452dbd88a38f.tar.bz2
ilt-d63f5ce1cb86e69da28bd74b21e9452dbd88a38f.tar.xz
ilt-d63f5ce1cb86e69da28bd74b21e9452dbd88a38f.zip
Move utility to lib
Diffstat (limited to 'utility/sorting.hpp')
-rw-r--r--utility/sorting.hpp12
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