13 lines
188 B
C++
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 |