index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
Sema
/
SemaTemplateDeduction.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Push nested-name-specifier source location information into template
Douglas Gregor
2011-03-02
1
-5
/
+18
*
Tweaks to C++0x deduced auto type support:
Richard Smith
2011-02-21
1
-7
/
+7
*
Implement the C++0x deduced 'auto' feature.
Richard Smith
2011-02-20
1
-5
/
+101
*
Handle the resolution of a reference to a function template (which
Douglas Gregor
2011-02-19
1
-7
/
+11
*
Fix whitespace.
NAKAMURA Takumi
2011-01-27
1
-392
/
+392
*
7bit-ize.
NAKAMURA Takumi
2011-01-27
1
-8
/
+8
*
Rvalue references for *this: tentative parsing and template argument deduction.
Douglas Gregor
2011-01-26
1
-5
/
+5
*
Rvalue references for *this:
Douglas Gregor
2011-01-26
1
-0
/
+1
*
Implement the rvalue-reference deduction transformation (from T&& ->
Douglas Gregor
2011-01-25
1
-6
/
+33
*
Implement core issue 1164, which concerns the partial ordering of
Douglas Gregor
2011-01-21
1
-47
/
+87
*
Implement the special template argument deduction rule for T&& in a
Douglas Gregor
2011-01-21
1
-0
/
+12
*
Implement support for non-type template parameter packs whose type is
Douglas Gregor
2011-01-19
1
-5
/
+7
*
Generalize some operations on qualifiers. QualType::getQualifiers() and
John McCall
2011-01-18
1
-1
/
+2
*
Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and
Jeffrey Yasskin
2011-01-18
1
-3
/
+0
*
Tweak the partial ordering rules for function templates to prefer a
Douglas Gregor
2011-01-16
1
-2
/
+30
*
Teach PackExpansionExpr to keep track of the number of pack expansions
Douglas Gregor
2011-01-14
1
-3
/
+0
*
Fix a few warnings stemming from my inability to properly fill out
Douglas Gregor
2011-01-14
1
-0
/
+18
*
Add TemplateArgument::CreatePackCopy() to create a new parameter pack
Douglas Gregor
2011-01-11
1
-10
/
+7
*
Implement partial ordering of class template partial specializations
Douglas Gregor
2011-01-11
1
-6
/
+31
*
Implement C++ [temp.func.order]p5 more directly, by passing down the
Douglas Gregor
2011-01-11
1
-149
/
+145
*
Implement the last bullet of [temp.deduct.type]p5 and part of the last
Douglas Gregor
2011-01-11
1
-1
/
+13
*
Implement more of C++0x [temp.arg.explicit]p9, allowing extension of
Douglas Gregor
2011-01-10
1
-9
/
+6
*
Repent for my copy-and-paste sins, factoring out the code that forms
Douglas Gregor
2011-01-10
1
-108
/
+70
*
Factor out the code to set up template argument deduction for a set of
Douglas Gregor
2011-01-10
1
-50
/
+40
*
Work-in-progress implementation of C++0x [temp.arg.explicit]p9, which
Douglas Gregor
2011-01-10
1
-25
/
+95
*
Implement substitution of a function parameter pack for its set of
Douglas Gregor
2011-01-07
1
-1
/
+0
*
Factor out the template transformation of a sequence of function
Douglas Gregor
2011-01-07
1
-13
/
+5
*
Implement template argument deduction from a call to a function
Douglas Gregor
2011-01-06
1
-89
/
+239
*
Fast-path an arity check when performing template argument deduction that com...
Douglas Gregor
2011-01-05
1
-2
/
+6
*
Initial implementation of function parameter packs. This implementation allows:
Douglas Gregor
2011-01-05
1
-44
/
+218
*
Propagate the "deduced from array bound" bit when comparing deduced
Douglas Gregor
2011-01-05
1
-5
/
+5
*
When we're converting deduced template arguments to the type of the
Douglas Gregor
2011-01-05
1
-3
/
+27
*
Replace the representation of template template argument pack
Douglas Gregor
2011-01-05
1
-10
/
+28
*
Add semantic analysis for the creation of and an AST representation
Douglas Gregor
2011-01-05
1
-3
/
+4
*
Many of the built-in operator candidates introduced into overload
Douglas Gregor
2011-01-05
1
-3
/
+1
*
Eliminate some completely useless code that attempted to perform some
Douglas Gregor
2011-01-04
1
-32
/
+0
*
Improve our handling of non-type template parameters in partial
Douglas Gregor
2011-01-04
1
-115
/
+160
*
Remove an unnecessary FIXME for variadic templates
Douglas Gregor
2011-01-04
1
-2
/
+0
*
Minor cleanups for template argument deduction in the presence of
Douglas Gregor
2011-01-04
1
-10
/
+3
*
Improve the checking of deduced template arguments stored within template arg...
Douglas Gregor
2011-01-04
1
-40
/
+71
*
Implement support for pack expansions whose pattern is a non-type
Douglas Gregor
2011-01-03
1
-0
/
+4
*
Fix a thinko in a helper routine for template argument deduction that
Douglas Gregor
2010-12-24
1
-4
/
+4
*
Implement the part of C++0x [temp.arg.explicit]p3 that pertains to
Douglas Gregor
2010-12-23
1
-1
/
+11
*
Implement the rest of C++0x [temp.deduct.type]p9, which specifies that
Douglas Gregor
2010-12-23
1
-3
/
+57
*
Be paranoid about NULL size expressions in dependently-sized array types
Douglas Gregor
2010-12-22
1
-3
/
+4
*
Unify the consistency checking for deduced template arguments into a
Douglas Gregor
2010-12-22
1
-125
/
+212
*
Implement template argument deduction for pack expansions whose
Douglas Gregor
2010-12-22
1
-21
/
+154
*
When performing template argument deduction where the argument is a
Douglas Gregor
2010-12-22
1
-12
/
+15
*
Implicitly expand argument packs when performing template argument
Douglas Gregor
2010-12-22
1
-33
/
+98
*
Clean up the handling of template argument packs, especially in the
Douglas Gregor
2010-12-20
1
-1
/
+2
[next]