This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
838838f06a
llvm-project
/
clang
/
test
/
Modules
/
Inputs
/
template-default-args
/
c.h
3 lines
80 B
C
Raw
Normal View
History
Unescape
Escape
[modules] Track all default template arguments for a given parameter across modules, and allow use of a default template argument if any of the parameters providing it is visible. llvm-svn: 239485
2015-06-11 04:30:23 +08:00
template
<
typename
T
=
int
>
struct
F
;
[modules] Fix typo in default argument merging. llvm-svn: 239954
2015-06-18 06:13:23 +08:00
template
<
typename
T
,
typename
U
>
struct
I
;