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][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
clang
/
test
/
Modules
/
Inputs
/
merge-var-template-def
/
b2.h
blob
6ab87c2fa718cc659c3180f2694058089d232432
1
#ifndef B2_H
2
#define B2_H
3
4
template
<
typename T
,
T v
>
5
struct
S
{
static
constexpr
T value
=
v
; };
6
template
<
typename T
,
T v
>
7
constexpr
T S
<
T
,
v
>::
value
;
8
9
#endif