1 | #ifndef _GLIBCXX_STRING |
---|---|
2 | #define _GLIBCXX_STRING 1 |
3 | |
4 | template<typename T> |
5 | struct basic_string { |
6 | static T _S_empty_rep_storage[]; |
7 | }; |
8 | |
9 | template<typename T> |
10 | T basic_string<T>::_S_empty_rep_storage[sizeof(T)]; |
11 | |
12 | #endif |
13 |
1 | #ifndef _GLIBCXX_STRING |
---|---|
2 | #define _GLIBCXX_STRING 1 |
3 | |
4 | template<typename T> |
5 | struct basic_string { |
6 | static T _S_empty_rep_storage[]; |
7 | }; |
8 | |
9 | template<typename T> |
10 | T basic_string<T>::_S_empty_rep_storage[sizeof(T)]; |
11 | |
12 | #endif |
13 |