Add missing typedefs to std::pair

This commit is contained in:
William S Fulton 2019-02-12 23:02:38 +00:00
commit a47c2553f5
14 changed files with 31 additions and 16 deletions

View file

@ -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);