1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// bindgen-flags: -- -std=c++11 namespace std { inline namespace __cxx11 { template<typename CharT> class basic_string { struct Alloc_hider { void* storage; } hider; unsigned long length; struct { CharT inline_storage[4]; }; }; } }