brintos

brintos / llvm-project-archived public Read only

0
0
Text · 214 B · 653ce07 Raw
13 lines · c
1#ifndef _GLIBCXX_STRING2#define _GLIBCXX_STRING 13 4template<typename T>5struct basic_string {6  static T _S_empty_rep_storage[];7};8 9template<typename T>10T basic_string<T>::_S_empty_rep_storage[sizeof(T)];11 12#endif13