mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 15:20:58 -04:00
18 lines
232 B
C++
18 lines
232 B
C++
#ifndef MSL_UTILITY_H_
|
|
#define MSL_UTILITY_H_
|
|
|
|
namespace std {
|
|
template <class T1, class T2>
|
|
struct pair {
|
|
T1 first;
|
|
T2 second;
|
|
|
|
pair() {
|
|
first = T1();
|
|
second = T2();
|
|
}
|
|
};
|
|
} // namespace std
|
|
|
|
#endif
|