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.

9 lines
218 B

#ifndef _GLIBCXX_STRING
#define _GLIBCXX_STRING
template<typename> struct basic_string {
struct _Alloc_hider {} _M_dataplus;
~basic_string() { _Alloc_hider h; }
};
extern template class basic_string<char>;
#endif