brintos

brintos / llvm-project-archived public Read only

0
0
Text · 218 B · 95680ed Raw
9 lines · c
1#ifndef _GLIBCXX_STRING2#define _GLIBCXX_STRING3template<typename> struct basic_string {4  struct _Alloc_hider {} _M_dataplus;5  ~basic_string() { _Alloc_hider h; } 6};7extern template class basic_string<char>;8#endif9