Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- template<class T>
- void swap(T& x,T& y)
- {
- T temp = x;
- x = y;
- y = temp;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement