| 87 | // Non-member swap function |
| 88 | template <typename T1, typename T2> |
| 89 | void swap(pair<T1, T2> &lhs, pair<T1, T2> &rhs) FL_NOEXCEPT { |
| 90 | lhs.swap(rhs); |
| 91 | } |
| 92 | |
| 93 | // make_pair function |
| 94 | template <typename T1, typename T2> |
no test coverage detected