llvm-for-llvmta/tools/clang/test/Modules/Inputs/PR26179/basic_string.h
Nils Hölscher 7f403f4f1e added clang
2022-04-25 13:02:35 +02:00

13 lines
214 B
C++

#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