You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
424 B
21 lines
424 B
#ifndef _GLIBCXX_MAP
|
|
#define _GLIBCXX_MAP
|
|
struct basic_string {
|
|
basic_string(char *);
|
|
} typedef string;
|
|
|
|
template <typename> class D;
|
|
template <typename _Elements> struct D {
|
|
_Elements _M_;
|
|
D(D &) = default;
|
|
};
|
|
|
|
template <typename _Elements> D<_Elements &&> forward_as_tuple(_Elements);
|
|
|
|
template <typename _Key, typename _Tp> struct map {
|
|
_Tp operator[](_Key p1) {
|
|
auto b = &forward_as_tuple(p1);
|
|
}
|
|
};
|
|
#endif
|