aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaTemplate.cpp
AgeCommit message (Expand)Author
2012-07-13Apply visibility pragmas to class template declarations. This is needed becauseRafael Espindola
2012-07-13Fix a bug in my previous commit. The problem is not that we were not using theRafael Espindola
2012-07-08PR9793: Treat substitution as an instantiation step for the purpose of theRichard Smith
2012-06-15Documentation cleanup:James Dennett
2012-06-15Documentation cleanup:James Dennett
2012-06-14Still more Doxygen documentation fixes:James Dennett
2012-06-08Fix up the 'typename' suggestion logic introduced in r157085, based onKaelyn Uhrain
2012-06-07Plug a long standing memory leak in TemplateArgument.Benjamin Kramer
2012-05-18Suggest adding 'typename' when it would make the compilerKaelyn Uhrain
2012-05-09A little tweak to the SFINAE condition reporting. Don't say:Richard Smith
2012-05-04Move Sema::VerifyIntegerConstantExpression() andDouglas Gregor
2012-05-01In C++11 mode, implement the C++11 semantics forDouglas Gregor
2012-04-26Add a missing ExpressionEvaluationContext for template default arguments. Fi...Eli Friedman
2012-04-26Two missing -Wc++98-compat warnings, for null pointers as non-type templateRichard Smith
2012-04-25When resolving default template arguments, it should be done in the declarati...Argyrios Kyrtzidis
2012-04-22PR12585: When processing a friend template inside a class template, don'tRichard Smith
2012-04-21When declaring a template, check that the context doesn't already contain aRichard Smith
2012-04-20Replace r155185 with a better fix, which also addresses PR12557. When lookingRichard Smith
2012-04-20Fix a bug which creduce found reducing PR12585.Richard Smith
2012-04-10Improve diagnostics in C++11 when a non-type template argument for aDouglas Gregor
2012-04-10Rework implementation of null non-type template arguments based onDouglas Gregor
2012-04-06Implement support for null non-type template arguments for non-typeDouglas Gregor
2012-04-04Implement C++11 [temp.arg.nontype]'s permission to use the address of an objectRichard Smith
2012-03-30If we encounter a friend class template for which we cannot resolveDouglas Gregor
2012-03-28Unify and fix our checking of C++ [dcl.meaning]p1's requirementsDouglas Gregor
2012-03-23Support for definitions of member enumerations of class templates outside theRichard Smith
2012-03-18Replace a FIXME with a diagnostic when we can't resolve theDouglas Gregor
2012-03-17Diagnose tag and class template declarations with qualifiedDouglas Gregor
2012-03-13Implement [temp.param]p5: the top-level cv-qualifiers on a non-type templateRichard Smith
2012-03-13Fix PR10447: lazily building name lookup tables for DeclContexts was broken.Richard Smith
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-03-10When determining whether an identifier followed by a '<' in a memberDouglas Gregor
2012-03-09[AST/Sema/libclang] Replace getSourceRange().getBegin() with getLocStart().Daniel Dunbar
2012-02-23Two fixes to how we compute visibility:Rafael Espindola
2012-02-20Fix a constexpr FIXME: When implicitly instantiating the primary template for anRichard Smith
2012-02-13Introduce support for template instantiation of lambdaDouglas Gregor
2012-02-10Make sure we convert struct layout pragmas to attributes for class templates ...Eli Friedman
2012-02-06Added source location for the template keyword in DependentTemplateSpecializa...Abramo Bagnara
2012-02-06Removed redundant location info from ElaboratedTypeLoc / DependentNameLoc / D...Abramo Bagnara
2012-02-06Added location for template keyword in TemplateSpecializationTypeLoc. In the ...Abramo Bagnara
2012-02-06Fixed instantiation of DependentScopeDeclRefExpr.Abramo Bagnara
2012-02-05Basic: import SmallString<> into clang namespaceDylan Noblesmith
2012-02-04Move a method from IdentifierTable.h out of line and remove the SmallString i...Benjamin Kramer
2012-02-04In C++11 mode, when an integral constant expression is desired and we have aRichard Smith
2012-02-03When a pack expansion occurs in the template argument list of an aliasDouglas Gregor
2012-02-03Implement support for a pack expansion into a fixed-lengthDouglas Gregor
2012-02-02Split Sema::MarkDeclarationReferenced into multiple functions; the additional...Eli Friedman
2012-01-31Make the callback object to Sema::CorrectTypo mandatory.Kaelyn Uhrain
2012-01-30SmallBitVectorize the deduced parameter set.Benjamin Kramer
2012-01-27Added source location for the template keyword in AST template-id expressions.Abramo Bagnara