Add missing typedefs to std::pair
This commit is contained in:
parent
9dd33e6367
commit
a47c2553f5
14 changed files with 31 additions and 16 deletions
|
|
@ -18,6 +18,9 @@
|
|||
namespace std {
|
||||
|
||||
template<class T, class U> struct pair {
|
||||
typedef T first_type;
|
||||
typedef U second_type;
|
||||
|
||||
|
||||
pair();
|
||||
pair(T first, U second);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue