Clang Project

clang_source_code/test/Modules/Inputs/PR26179/basic_string.h
1#ifndef _GLIBCXX_STRING
2#define _GLIBCXX_STRING 1
3
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#endif
13