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
/
PR26014
/
A.h
blob
49de5ba479af2fa05806ec331c0b63df15417939
1
#ifndef _LIBCPP_TYPE_TRAITS
2
#define _LIBCPP_TYPE_TRAITS
3
4
5
template
<
class
_Tp
>
6
struct
underlying_type
7
{
8
typedef
__underlying_type
(
_Tp
)
type
;
9
};
10
11
#endif
// _LIBCPP_TYPE_TRAITS
12
13
#include
"B.h"