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
[AMDGPU] Implement IR variant of isFMAFasterThanFMulAndFAdd (#121465)
[llvm-project.git]
/
lldb
/
test
/
API
/
lang
/
cpp
/
gmodules
/
basic
/
pch.h
blob
dba4fee9a8c21d81b5d6ae86e15f138088c34501
1
template
<
typename T
>
2
class
GenericContainer
{
3
private
:
4
T storage
;
5
6
public
:
7
GenericContainer
(
T value
) {
8
storage
=
value
;
9
};
10
};
11
12
typedef
GenericContainer
<
int
>
IntContainer
;
13
14
struct
Foo
{
15
class
Bar
;
16
Bar
*
bar
;
17
};