[algs] Remove hb_pair_t()

This commit is contained in:
Behdad Esfahbod 2022-07-21 16:46:45 -06:00
parent 9eab3ac72d
commit 0cc2f3c218
1 changed files with 0 additions and 1 deletions

View File

@ -527,7 +527,6 @@ struct hb_pair_t
T1 first;
T2 second;
};
#define hb_pair_t(T1,T2) hb_pair_t<T1, T2>
template <typename T1, typename T2> static inline hb_pair_t<T1, T2>
hb_pair (T1&& a, T2&& b) { return hb_pair_t<T1, T2> (a, b); }