bolt/deps/llvm-18.1.8/clang/test/Modules/Inputs/PR26179/basic_string.h
2025-02-14 19:21:04 +01:00

12 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