Age | Commit message (Expand) | Author |
2012-12-20 | Revert r170500. It over-zealously converted *ALL* things named Attributes, wh... | Bill Wendling |
2012-12-19 | Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl... | Bill Wendling |
2012-12-19 | Change DeclContextLookup(Const)Result to (Mutable)ArrayRef<NamedDecl*>, as pe... | David Blaikie |
2012-12-04 | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth |
2012-09-20 | Handle lambdas where the lambda-declarator is an explicit "(void)". PR13854. | Eli Friedman |
2012-09-19 | Add the TypeSourceInfo for the lambda call operator to the lambda's | Eli Friedman |
2012-09-18 | Add an extra check for invalid decls in the lambda semantic analysis to avoid... | Eli Friedman |
2012-08-30 | PR13652: Don't assume the parameter array on a FunctionTypeLoc for a lambda will | Richard Smith |
2012-08-10 | Provide isConst/Volatile on CXXMethodDecl. | David Blaikie |
2012-07-25 | PR12057: Allow variadic template pack expansions to cross lambda boundaries. | Richard Smith |
2012-07-22 | PR12917: Remove incorrect assumption that lambda mangling information cannot | Richard Smith |
2012-07-04 | Split out the "empty" case for compound statement into a separate ctor. | Benjamin Kramer |
2012-07-02 | In blocks, only pretend that enum constants have enum type if necessary. | Jordan Rose |
2012-06-15 | Check the parameter lists and return type of both blocks and lambdas | Douglas Gregor |
2012-06-06 | Revert Decl's iterators back to pointer value_type rather than reference valu... | David Blaikie |
2012-06-04 | Removing the lambda extension warning concerning single return statements, as... | Aaron Ballman |
2012-04-30 | Remove the ref/value inconsistency in filter_decl_iterator. | David Blaikie |
2012-04-04 | Move the computation of the lambda mangling information (mangling | Douglas Gregor |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-03-01 | Implement "optimization" for lambda-to-block conversion which inlines the gen... | Eli Friedman |
2012-02-22 | Generate an AST for the conversion from a lambda closure type to a | Douglas Gregor |
2012-02-21 | Only pop the expression evaluation context corresponding to a lambda | Douglas Gregor |
2012-02-21 | Improve our handling of lambda expressions that occur within default | Douglas Gregor |
2012-02-21 | Remove comma from end of enum to silence build warning. | Craig Topper |
2012-02-21 | Implement non-internal linkage for lambda closure types that need a | Douglas Gregor |
2012-02-21 | Implement name mangling for lambda expressions that occur within the | Douglas Gregor |
2012-02-21 | Implement name mangling for lambda expressions that occur within the | Douglas Gregor |
2012-02-20 | Make sure that we set up the right declaration contexts when creating | Douglas Gregor |
2012-02-20 | Basic support for name mangling of C++11 lambda expressions. Because | Douglas Gregor |
2012-02-18 | Rewrite variable capture within lambda expressions and blocks, | Douglas Gregor |
2012-02-17 | Rework the Sema/AST/IRgen dance for the lambda closure type's | Douglas Gregor |
2012-02-15 | Lambda closure types have a conversion function to a block pointer | Douglas Gregor |
2012-02-15 | Factor the construction of the lambda-to-function-pointer conversion function... | Douglas Gregor |
2012-02-14 | Implement C++ core issue 974, which permits default arguments for | Douglas Gregor |
2012-02-14 | Check the return type of lambda expressions. | Douglas Gregor |
2012-02-14 | Implement support for lambda capture pack expansions, e.g., | Douglas Gregor |
2012-02-14 | Link together the call operator produced from transforming a lambda | Douglas Gregor |
2012-02-13 | Introduce support for template instantiation of lambda | Douglas Gregor |
2012-02-13 | Keep track of the set of array index variables we use when we | Douglas Gregor |
2012-02-13 | Move the storage of lambda captures and capture initializers from | Douglas Gregor |
2012-02-12 | Lambdas have a deleted default constructor and a deleted copy | Douglas Gregor |
2012-02-10 | Allow implicit capture of 'this' in a lambda even when the capture | Douglas Gregor |
2012-02-10 | Don't introduce a lambda's operator() into the class until after we | Douglas Gregor |
2012-02-10 | Track whether a function type has a trailing return type as type sugar. Use this | Richard Smith |
2012-02-10 | Implement the conversion to a function pointer for lambda expressions, | Douglas Gregor |
2012-02-10 | Extend CXXRecordDecl with a function that determines the mapping from | Douglas Gregor |
2012-02-09 | Implement return type deduction for lambdas per C++11 | Douglas Gregor |
2012-02-09 | Restore the appropriate lexical declaration context for a lambda's | Douglas Gregor |
2012-02-09 | Remove the "unsupported" error for lambda expressions. It's annoying, | Douglas Gregor |
2012-02-09 | Implement C++ [expr.prim.lambda]p2, which bans lambda expressions in | Douglas Gregor |