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
...
*
Added the pack_elements range accessor. Refactoring some for loops to use ran...
Aaron Ballman
2014-07-15
1
-8
/
+4
*
Fix PR18498: Support explicit template arguments with variadic generic lambdas
Faisal Vali
2014-06-01
1
-1
/
+11
*
PR12961 - Extend DR532 to cover C++98/03.
Nikola Smiljanic
2014-05-31
1
-19
/
+9
*
Refactoring. Remove release and take methods from ActionResult. Rename takeAs...
Nikola Smiljanic
2014-05-29
1
-4
/
+4
*
PR19878: If a pack expansion appears within another pack expansion, correctly
Richard Smith
2014-05-29
1
-199
/
+178
*
[C++11] Use 'nullptr'. Sema edition.
Craig Topper
2014-05-26
1
-27
/
+27
*
[C++11] Replacing CXXRecordDecl iterators bases_begin() and bases_end() with ...
Aaron Ballman
2014-03-13
1
-5
/
+3
*
[C++11] Replacing FunctionDecl iterators param_begin() and param_end() with i...
Aaron Ballman
2014-03-07
1
-5
/
+2
*
[C++11] Replace llvm::tie with std::tie.
Benjamin Kramer
2014-03-02
1
-3
/
+3
*
Rename getResultType() on function and method declarations to getReturnType()
Alp Toker
2014-01-25
1
-40
/
+36
*
Rename FunctionProtoType accessors from 'arguments' to 'parameters'
Alp Toker
2014-01-20
1
-13
/
+12
*
Use the appropriate SourceLocation for the template backtrace when doing
Nick Lewycky
2014-01-11
1
-16
/
+12
*
Objective-C ARC++: Prefer references to __strong/__weak over __unsafe_unretai...
Douglas Gregor
2014-01-02
1
-0
/
+11
*
PR18229: Fix typo in assert condition.
Richard Smith
2013-12-12
1
-1
/
+1
*
Handle CC and NoReturn when instantiating members of class templates.
Rafael Espindola
2013-12-01
1
-17
/
+24
*
Further fixes when thiscall is the default for methods.
Rafael Espindola
2013-11-19
1
-0
/
+17
*
Objective-C++ ARC: Improve the conversion to a const __unsafe_unretained refe...
Douglas Gregor
2013-11-08
1
-7
/
+10
*
Refactor: Extract specializing the generic lambda call operator during conver...
Faisal Vali
2013-10-24
1
-141
/
+133
*
Make InstantiatingTemplate depth checks clearer
Alp Toker
2013-10-08
1
-4
/
+4
*
Fix gcc -Wunused-but-set-variable warning in r191634.
Patrik Hagglund
2013-10-02
1
-5
/
+2
*
SemaTemplateDeduction.cpp: Suppress a warning. [-Wunused-variable]
NAKAMURA Takumi
2013-09-30
1
-1
/
+1
*
Fix windows newlines :(
Faisal Vali
2013-09-29
1
-133
/
+133
*
Implement conversion to function pointer for generic lambdas without captures.
Faisal Vali
2013-09-29
1
-12
/
+163
*
Per latest drafting, switch to implementing init-captures as if by declaring
Richard Smith
2013-09-28
1
-2
/
+6
*
Implement a rudimentary form of generic lambdas.
Faisal Vali
2013-09-26
1
-2
/
+10
*
SemaTemplateDeduction.cpp: Prune two stray \param(s), TPOC and NumCallArgumen...
NAKAMURA Takumi
2013-09-11
1
-6
/
+0
*
PR17075: When performing partial ordering of a member function against a
Richard Smith
2013-09-11
1
-40
/
+43
*
getMostSpecialized for function template sets is never used in the context of a
Richard Smith
2013-09-10
1
-3
/
+2
*
A clean-up pass, exploring the unification of traversals of class, variable a...
Larisse Voufo
2013-08-23
1
-3
/
+15
*
Use pop_back_val() instead of both back() and pop_back().
Robert Wilhelm
2013-08-23
1
-4
/
+2
*
Revert "Implement a rudimentary form of generic lambdas."
Manuel Klimek
2013-08-22
1
-12
/
+3
*
Implement a rudimentary form of generic lambdas.
Faisal Vali
2013-08-22
1
-3
/
+12
*
PR16875: The return type of a dependent function type is visible when it's
Richard Smith
2013-08-14
1
-5
/
+4
*
Added source locs for angled parentheses in class/var template partial specs.
Enea Zaffanella
2013-08-10
1
-10
/
+13
*
Omit llvm:: before ArrayRef, as we have using llvm::ArrayRef in include/clan...
Robert Wilhelm
2013-08-09
1
-6
/
+4
*
A bit of clean up based on peer's feedback...
Larisse Voufo
2013-08-06
1
-1
/
+1
*
Started implementing variable templates. Top level declarations should be ful...
Larisse Voufo
2013-08-06
1
-1
/
+212
*
FIXME fix: improving diagnostics for template arguments deduction of class te...
Larisse Voufo
2013-07-19
1
-15
/
+10
*
Revert "Use function overloading instead of template specialization for diagn...
Larisse Voufo
2013-07-19
1
-10
/
+15
*
Use function overloading instead of template specialization for diagnosis of ...
Larisse Voufo
2013-07-19
1
-15
/
+10
*
Introduce a typedef for the type of NewlyDeducedPacks to avoid repeating the ...
Craig Topper
2013-07-08
1
-20
/
+19
*
Remove 'else' after 'return'
Craig Topper
2013-07-08
1
-1
/
+1
*
Function argument formatting fixes. No functional change.
Craig Topper
2013-07-08
1
-6
/
+6
*
Function argument formatting fixes.
Craig Topper
2013-07-08
1
-17
/
+19
*
Add typedefs for Densemaps containing SmallVectors to avoid repeating the Sma...
Craig Topper
2013-07-05
1
-1
/
+1
*
Part of PR15673: If a function template has a default argument in which
Richard Smith
2013-07-04
1
-2
/
+5
*
Implement most of N3638 (return type deduction for normal functions).
Richard Smith
2013-05-04
1
-15
/
+63
*
Simplify slightly.
Richard Smith
2013-05-04
1
-4
/
+4
*
When deducing an 'auto' type, don't modify the type-as-written.
Richard Smith
2013-04-30
1
-24
/
+23
*
Don't treat a non-deduced 'auto' type as being type-dependent. Instead, there
Richard Smith
2013-04-30
1
-39
/
+13
[prev]
[next]