Loading [MathJax]/extensions/MathZoom.js
Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
utility.h
Go to the documentation of this file.
1#ifndef MSL_UTILITY_H_
2#define MSL_UTILITY_H_
3
4namespace std {
5template <class T1, class T2>
6struct pair {
7 T1 first;
9
10 pair() {
11 first = T1();
12 second = T2();
13 }
14};
15} // namespace std
16
17#endif
Definition d_a_e_wb.cpp:12
Definition utility.h:6
pair()
Definition utility.h:10
T2 second
Definition utility.h:8
T1 first
Definition utility.h:7