diff options
Diffstat (limited to 'core/pair.h')
-rw-r--r-- | core/pair.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/pair.h b/core/pair.h index 26a317e9d4..89ea2b9fd9 100644 --- a/core/pair.h +++ b/core/pair.h @@ -33,7 +33,6 @@ template <class F, class S> struct Pair { - F first; S second; @@ -60,7 +59,6 @@ bool operator!=(const Pair<F, S> &pair, const Pair<F, S> &other) { template <class F, class S> struct PairSort { - bool operator()(const Pair<F, S> &A, const Pair<F, S> &B) const { return A.first < B.first; } |