| 273 | // if the compiler is crappy and would otherwise mess it up. |
| 274 | template <typename T, typename Allocator> |
| 275 | void swap(std_vector_c<T,Allocator>& x, std_vector_c<T,Allocator>& y) { x.swap(y); } |
| 276 | |
| 277 | template <typename T, typename Allocator> |
| 278 | void swap(std::vector<T,Allocator>& x, std_vector_c<T,Allocator>& y) { x.swap(y); } |