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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
Modules
/
Inputs
/
PR26179
/
basic_string.h
blob
653ce078451c4466d24d3cffd9430bf22b87263b
1
#ifndef _GLIBCXX_STRING
2
#define _GLIBCXX_STRING 1
3
4
template
<
typename T
>
5
struct
basic_string
{
6
static
T _S_empty_rep_storage
[];
7
};
8
9
template
<
typename T
>
10
T basic_string
<
T
>::
_S_empty_rep_storage
[
sizeof
(
T
)];
11
12
#endif