コード例 #1
0
ファイル: shared_array.hpp プロジェクト: 4ukuta/core
template<class T> void swap(shared_array<T> & a, shared_array<T> & b) // never throws
{
    a.swap(b);
}
コード例 #2
0
template<class T> void swap(shared_array<T> & a, shared_array<T> & b)
{
    a.swap(b);
}