Files
TinySTL/TinySTL/Utility.h
2014-10-12 14:54:02 +08:00

13 lines
188 B
C++

#ifndef _UTILITY_H_
#define _UTILITY_H_
namespace TinySTL{
//************ [swap] ***************
template<class T>
void swap(T& a, T& b){
T temp = a;
a = b;
b = temp;
}
}
#endif