aboutsummaryrefslogtreecommitdiff
path: root/test/SemaTemplate
AgeCommit message (Expand)Author
2013-03-14Flag that friend function definitions are "late parsed" so thatJohn McCall
2013-03-08<rdar://problem/13094134> Don't try to wire up typedef names for invalid anon...Douglas Gregor
2013-03-08<rdar://problem/13140795> Transform the scope type of a pseudo-destructor exp...Douglas Gregor
2013-03-05Add quotation marks to template names in diagnostics.David Blaikie
2013-02-27PR15360: nullptr as a non-type template argument to a function type non-type ...David Blaikie
2013-02-27Add test coverage for array to pointer decay in non-type template parameters.David Blaikie
2013-02-22Handle alignas(foo...) pack expansions.Richard Smith
2013-02-02PR15132: Replace "address expression must be an lvalue or a functionRichard Smith
2013-01-31Improve 'failed template argument deduction' diagnostic for the case where weRichard Smith
2013-01-16Apply adjustment to function- and array-typed non-type templateDouglas Gregor
2012-12-22PR14695: Fix assert from bad cast<>. Not every namespace is a NamespaceDecl; ...Richard Smith
2012-12-21Fix regression in r170489: when instantiating a direct initializer which is aRichard Smith
2012-12-20Implement AST dumper for Decls.Alexander Kornienko
2012-12-19Attempt to clarify a vexing-parse diagnostic.Richard Smith
2012-12-19Fix assertion failure in self-host (and probably bogus template instantiationRichard Smith
2012-12-13Using CanQualType::getAs<ArrayType> is unsafe; fix the code currently using it,Eli Friedman
2012-11-28PR13098: If we're instantiating an overloaded binary operator and we couldRichard Smith
2012-11-26PR14428: When instantiating a 'new' expression, if we had a non-dependentRichard Smith
2012-11-23Sema: Provide a valid source location when instantiating templates based on a...Benjamin Kramer
2012-11-14When we have a MemberExpr referring to an overloaded static member function,Richard Smith
2012-11-13When filtering the list of associated namespaces so that we don't suggest peopleNick Lewycky
2012-11-10Rework my implementation of circular-reference finding to not useDouglas Gregor
2012-11-10Diagnostic circular inheritance involving dependent base classes. WeDouglas Gregor
2012-11-09PR13788: Don't perform checks on the initializer of a dependently-typedRichard Smith
2012-11-07When template deduction fails on a derived class, try a template deduction onRichard Trieu
2012-11-07PR11851 (and duplicates): Whenever a constexpr function is referenced,Richard Smith
2012-11-07Add missing check to warning for packed attribute. PR14259.Eli Friedman
2012-10-23When rebuilding a DependentScopeDeclRefExpr, perform a lookup into the scopeRichard Smith
2012-10-21Unrevert r166268, reverted in r166272, with a fix for the issue which NickRichard Smith
2012-10-19Prior to adding the new "expected-no-diagnostics" directive to VerifyDiagnost...Andy Gibbs
2012-10-19Revert r166268, this fix for a crash-on-invalid introduced a rejects-valid.Nick Lewycky
2012-10-19PR14124: When performing template instantiation of a qualified-id outside of aRichard Smith
2012-09-27Fix a regression from r164656.Eli Friedman
2012-09-25Don't produce diagnostics for missing ctor-initializers during templateRichard Smith
2012-09-22Fix bug which sometimes resulted in further diagnostics being produced after aRichard Smith
2012-09-13Don't perform template argument deduction against invalid templates;Douglas Gregor
2012-09-06Don't try to check override control for invalid member functions. Fixes a cra...Richard Smith
2012-08-30Reland r160052: Default to -std=c++11 on Windows.Nico Weber
2012-08-18PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers andRichard Smith
2012-08-08Implement warning for integral null pointer constants other than the literal 0.David Blaikie
2012-07-30Improvements to vexing-parse warnings. Make the no-parameters case moreRichard Smith
2012-07-27Final piece of core issue 1330: delay computing the exception specification ofRichard Smith
2012-07-16More for PR11848: a pack expansion type isn't necessarily type-dependent (itsRichard Smith
2012-07-16PR13365: Fix code which was trying to treat an array of DeducedTemplateArgumentRichard Smith
2012-07-16Related to PR11848 and core-21989: switch ContainsUnexpandedParameterPack fromRichard Smith
2012-07-15PR13368: Halve the instantiation depth of this test again. Apparently, FreeBSDRichard Smith
2012-07-13Provide a special-case diagnostic when two class member functions instantiateRichard Smith
2012-07-09PR13136:Richard Smith
2012-07-08Halve template depth in an attempt to get this test passing on mingw32.Richard Smith
2012-07-08test/SemaTemplate/instantiation-depth-defarg.cpp: Mark as XFAIL:mingw for now.NAKAMURA Takumi