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.

15 lines
378 B

namespace std {
template <typename, typename Container> struct normal_iterator {
normal_iterator() {}
template <typename I>
normal_iterator(normal_iterator<I, typename Container::iterator>) {}
};
template <typename pointer> struct basic_string {
typedef normal_iterator<pointer, basic_string> iterator;
};
typedef basic_string<wchar_t *> wstring;
}