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.
13 lines
214 B
13 lines
214 B
4 months ago
|
#ifndef _GLIBCXX_STRING
|
||
|
#define _GLIBCXX_STRING 1
|
||
|
|
||
|
template<typename T>
|
||
|
struct basic_string {
|
||
|
static T _S_empty_rep_storage[];
|
||
|
};
|
||
|
|
||
|
template<typename T>
|
||
|
T basic_string<T>::_S_empty_rep_storage[sizeof(T)];
|
||
|
|
||
|
#endif
|