Lines Matching full:swap
6 #if 0 /* temporary: investigation of problem with swap */
49 swap(a, b);
81 * Following two tests check the corectness of specialization of swap():
82 * for containers with container::swap method swap( a, b ) should
83 * use a.swap( b ), but don't try to do this substitution for container
84 * without swap method (in this case swap should be made via explicit members
108 swap( v1, v2 ); // this shouldn't try make it as v1.swap( v2 ), no queue::swap method!
122 #if 0 /* temporary: investigation of problem with swap */
153 swap( v1, v2 ); // this should has effect v1.swap( v2 )