| 11 | // // Do NOT override this function, but override swap() function instead! |
| 12 | template <typename T> |
| 13 | void Swap(T & a, T & b) |
| 14 | { |
| 15 | using std::swap; |
| 16 | swap(a, b); |
| 17 | } |
| 18 | |
| 19 | template <class T, size_t N> |
| 20 | class buffer_vector |
no test coverage detected