aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaDecl.cpp
AgeCommit message (Expand)Author
2009-10-12Permit explicit specialization of member functions of class templatesDouglas Gregor
2009-10-12Diagnose the declaration of explicit specializations after an implicitDouglas Gregor
2009-10-10Qualified lookup through using declarations. Diagnose a new type of ambiguity.John McCall
2009-10-09Refactor the LookupResult API to simplify most common operations. Require us...John McCall
2009-10-08Implement support for -Wunused-variable, from Oscar Bonilla!Douglas Gregor
2009-10-08Add more testing for the properties of explicit specialization. Douglas Gregor
2009-10-08Don't complain about out-of-line explicit specializations of memberDouglas Gregor
2009-10-08Improve checking for specializations of member classes of classDouglas Gregor
2009-10-08For instantiations of static data members of class templates, keepDouglas Gregor
2009-10-07Refactoring around friend class templates. Better error message for friend e...John McCall
2009-10-07Type checking for specializations of member functions of classDouglas Gregor
2009-10-06Refactor the code that walks a C++ inheritance hierarchy, searchingDouglas Gregor
2009-10-01When the return type of a function is dependent, don't perform anyDouglas Gregor
2009-09-30Add an error for function parameters that have a qualified address space sinc...Tanya Lattner
2009-09-28Provide a custom diagnostic when code tries to use an unknown builtinDouglas Gregor
2009-09-28Make sure that out-of-line function and variable definitions are notDouglas Gregor
2009-09-28Teach Sema::isDeclInScope to handle overload sets constructed fromDouglas Gregor
2009-09-26Rework the Parse-Sema interaction for friends to better support friendDouglas Gregor
2009-09-25Use explicitly-specified template argument lists to help namingDouglas Gregor
2009-09-25Declarators can now properly represent template-ids, e.g., forDouglas Gregor
2009-09-24WIP implementation of explicit function template specialization. ThisDouglas Gregor
2009-09-24Refactor the representation of qualifiers to bring ExtQualType out of theJohn McCall
2009-09-21Change all the Type::getAsFoo() methods to specializations of Type::getAs().John McCall
2009-09-17Merge uninstantiated default arguments more carefully, and try not toDouglas Gregor
2009-09-16Improved representation and support for friend class templates. Angst about ...John McCall
2009-09-15When implicitly declaring operators new, new[], delete, and delete[],Douglas Gregor
2009-09-13Perform the C++ specific semantic checks of a function declaration after it's...Anders Carlsson
2009-09-13Rework the way we determine whether an externally visible symbol isDouglas Gregor
2009-09-12Remove unnecessary ASTContext parameter from FunctionDecl::isBuiltinIDDouglas Gregor
2009-09-12Remove unnecessary ASTContext parameters from isMain and isExternCDouglas Gregor
2009-09-11Support elaborated dependent types and diagnose tag mismatches.John McCall
2009-09-09Don't bother to perform any initialization for a variable declarationDouglas Gregor
2009-09-09Improve handling of initialization by constructor, by ensuring thatDouglas Gregor
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-09-09Fix a thinkoDouglas Gregor
2009-09-09Allow a declaration of an array to complete a prior, incompleteDouglas Gregor
2009-09-08Fix PR4922, where Sema would complete tentative definitions in nondeterminsticChris Lattner
2009-09-07BuildCXXConstructExpr now takes a MultiExprArg.Anders Carlsson
2009-09-05Start emitting ElaboratedTypes in C++ mode. Support the effort in variousJohn McCall
2009-09-04Correctly handle elaborated template ids. Still not handled properly for fri...John McCall
2009-09-03Patch to instantiate destructors used to destructFariborz Jahanian
2009-09-02Borrow a friend class's previous declaration's access specifier regardless ofJohn McCall
2009-09-02When adding a friend class declaration to the lookup tables, use the access s...John McCall
2009-09-02Ensure that the tag decls of friend decls aren't added to the friending class'sJohn McCall
2009-08-31Fix bug 4784 and allow friend declarations to properly extendJohn McCall
2009-08-30Improve diagnostics for missing members. This renames the err_typecheck_no_me...Anders Carlsson
2009-08-29Add another check for UnresolvedUsingDecl.Anders Carlsson
2009-08-28Make sure we actually found a redeclaration before complaining about attribut...Douglas Gregor
2009-08-28Check for UnresolvedUsingDecl when determining if a declaration is a redeclar...Anders Carlsson
2009-08-28Omnibus friend decl refactoring. Instead of cloning AST classes for friendJohn McCall