aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaTemplate.cpp
AgeCommit message (Expand)Author
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
2012-01-27Avoid redundant NNS qualification in constructor/destructor names.Abramo Bagnara
2012-01-18constexpr: converted constant expression handling for enumerator values, caseRichard Smith
2012-01-17Remove unreachable code in Clang. (replace with llvm_unreachable where approp...David Blaikie
2012-01-14De-virtualize getPreviousDecl() and getMostRecentDecl() when we knowDouglas Gregor
2012-01-14Introduce Decl::getPreviousDecl() and Decl::getMostRecentDecl(),Douglas Gregor
2012-01-13Convert SemaTemplate*.cpp to pass a callback object to CorrectTypo.Kaelyn Uhrain
2012-01-12In Objective-C++, actually compute the base type of a member accessDouglas Gregor
2012-01-10Update C++11 scoped enumeration support to match the final proposal:Richard Smith
2012-01-09Fix "note" of a duplicate explicit instantiation definition following a speci...Nico Weber
2012-01-04Process attributes in explicit function template instantiations. Fixes part ofRafael Espindola
2012-01-03Process attributes in explicit template instatiation definitions. Fixes PR11690.Rafael Espindola
2011-12-23Fix several issues related to specializations and explicit instantiations.Nico Weber
2011-12-20When performing name lookup for a redeclaration, ignore moduleDouglas Gregor
2011-11-07When we notice that a member function is defined with "= delete" or "=Douglas Gregor
2011-11-03When we're checking a friend function template in an out-of-line classDouglas Gregor
2011-11-02Fix various minor issues find via unreachable code warnings, fromDouglas Gregor
2011-11-01When we see an out-of-line definition of a member class template thatDouglas Gregor
2011-10-27Fix some cases where a CK_IntegralCast was being used to convert an lvalue to anRichard Smith
2011-10-25Check for unexpanded parameter packs in the name that guards aDouglas Gregor