summaryrefslogtreecommitdiffstats
path: root/lib/Sema/SemaTemplate.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* Remove a whole lot of unused variablesAlp Toker2013-11-271-5/+0
* Further fixes when thiscall is the default for methods.Rafael Espindola2013-11-191-16/+3
* Issue a diagnostic if we see a templated friend declaration that we do notRichard Smith2013-11-081-3/+4
* Sema: Emit a nicer diagnostic when IndirectFieldDecls show up inappropriately...David Majnemer2013-10-261-2/+2
* Sema: Correctly build pointer-to-member arguments from a template argument wi...David Majnemer2013-10-261-1/+2
* Sema: Allow IndirectFieldDecl to appear in a non-type template argumentDavid Majnemer2013-10-221-1/+4
* Sema: Do not allow template declarations inside local classesDavid Majnemer2013-10-221-2/+14
* Convert anachronistic use of 'void *' to 'DeclContext *' in Scope that was a ...Ted Kremenek2013-10-081-1/+1
* Make InstantiatingTemplate depth checks clearerAlp Toker2013-10-081-11/+10
* Fix a bug where we failed to diagnose class template specializationChandler Carruth2013-09-271-0/+3
* Variable templates: handle instantiation of static data member templatesRichard Smith2013-09-271-7/+2
* Implement restriction that a partial specialization must actually specializeRichard Smith2013-09-241-3/+82
* Remove some dead code.Richard Smith2013-09-181-6/+3
* Fix accepts-invalid if a variable template explicit instantiation is missing anRichard Smith2013-09-181-9/+19
* getMostSpecialized for function template sets is never used in the context of aRichard Smith2013-09-101-2/+2
* Ignore noreturn when checking function template specializationsReid Kleckner2013-09-101-2/+5
* Ignore calling conventions when checking function template specializationsReid Kleckner2013-09-101-3/+13
* Simplify. This function bails out a few lines above if !Found.empty().Richard Smith2013-09-031-1/+1
* Sema: Subst type default template args earlierDavid Majnemer2013-08-281-32/+41
* Cleanup of OpaquePtr. No functionality changes.Serge Pavlov2013-08-271-4/+4
* A clean-up pass, exploring the unification of traversals of class, variable a...Larisse Voufo2013-08-231-3/+4
* Use pop_back_val() instead of both back() and pop_back().Robert Wilhelm2013-08-231-2/+1
* Sema: Properly support Microsoft-mode template argumentsDavid Majnemer2013-08-231-95/+148
* Remove SequenceNumber from class/variable template partial specializations.Richard Smith2013-08-221-8/+2
* Improve support for static data member templates. This revision still has at ...Larisse Voufo2013-08-221-1/+4
* Sema: Remove dead code in CheckTemplateArgumentAddressOfObjectOrFunctionDavid Majnemer2013-08-191-8/+0
* Refactor all diagnosing of TypoCorrections through a common function, inRichard Smith2013-08-171-14/+6
* Bug fix: disallow a variable template to be redeclared as a non-templated var...Larisse Voufo2013-08-141-33/+0
* Implement [class.friend]p11's special name lookup rules for friend declarationsRichard Smith2013-08-091-2/+2
* PR9992: Serialize and deserialize the token sequence for a function template inRichard Smith2013-08-071-3/+18
* A bit of clean up based on peer's feedback...Larisse Voufo2013-08-061-5/+5
* Started implementing variable templates. Top level declarations should be ful...Larisse Voufo2013-08-061-61/+584
* PR16288: A template is only missing a default template argument if it providesRichard Smith2013-07-221-4/+1
* SemaTemplate.cpp: Prune a stray "\param NumParamLists" in comment. [-Wdocumen...NAKAMURA Takumi2013-07-221-2/+0
* Convert Sema::MatchTemplateParametersToScopeSpecifier to ArrayRef.Robert Wilhelm2013-07-211-36/+25
* FIXME fix: improving diagnostics for template arguments deduction of class te...Larisse Voufo2013-07-191-22/+29
* Revert "Use function overloading instead of template specialization for diagn...Larisse Voufo2013-07-191-29/+22
* Use function overloading instead of template specialization for diagnosis of ...Larisse Voufo2013-07-191-22/+29
* Reinstate r186040, with additional fixes and more test coverage (reverted inRichard Smith2013-07-171-2/+1
* Re-revert r86040, which was un-reverted in r186199.Chandler Carruth2013-07-151-1/+2
* Unrevert r186040, reverted in r186185, with fix for PR16597.Richard Smith2013-07-121-2/+1
* Revert r186040 to fix PR16597 while Richard investigates what the bestChandler Carruth2013-07-121-1/+2
* If we friend a declaration twice, that should not make it visible to nameRichard Smith2013-07-101-2/+1
* Part of PR15673: If a function template has a default argument in whichRichard Smith2013-07-041-3/+9
* Allow typo correction to try removing nested name specifiers.Kaelyn Uhrain2013-07-021-3/+7
* Remove unnecessary check.Eli Friedman2013-06-271-1/+1
* PR8302: Check for shadowing a template parameter when declaring a templateRichard Smith2013-06-251-23/+19
* Implement DR21David Majnemer2013-06-251-7/+9
* Fix assert if an attempt is made to explicitly instantiate an alias template.Richard Smith2013-06-221-3/+11
* Use FPT::getArgTypes() instead of manually building ArrayRefsReid Kleckner2013-06-101-3/+1