repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
Modules
/
Inputs
/
PR27513
/
mystring.h
blob
95680ed8837be7a6266472da8a8b9a917fb684ec
1
#ifndef _GLIBCXX_STRING
2
#define _GLIBCXX_STRING
3
template
<
typename
>
struct
basic_string
{
4
struct
_Alloc_hider
{}
_M_dataplus
;
5
~
basic_string
() {
_Alloc_hider h
; }
6
};
7
extern template class
basic_string
<
char
>;
8
#endif