reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 | #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 |