示例#1
0
void swap(buffer<Ch, Alloc>& lhs, buffer<Ch, Alloc>& rhs)
{ lhs.swap(rhs); }
示例#2
0
文件: buffer.hpp 项目: faldah/nt2
 void swap( buffer<T,B1,A>& a, buffer<T,B2,A>& b )
 {
   a.swap(b);
 }