Age | Commit message (Expand) | Author |
2012-02-19 | Emit a warning when list-initializing a std::initializer_list member. | Sebastian Redl |
2012-02-18 | Rewrite variable capture within lambda expressions and blocks, | Douglas Gregor |
2012-02-18 | Add a bunch of missing calls to DiagnoseSentinelCalls. <rdar://problem/10885... | Eli Friedman |
2012-02-18 | Diagnose uses of deleted destructors and inaccessible defaulted destructors. | Richard Smith |
2012-02-17 | Don't allow non-empty ParenListExprs as array-new initializers. | Sebastian Redl |
2012-02-16 | Proper checking of list-initializers for array new expressions. | Sebastian Redl |
2012-02-16 | Revert "Revert "Make CXXNewExpr contain only a single initialier, and not hol... | Sebastian Redl |
2012-02-16 | Revert "Make CXXNewExpr contain only a single initialier, and not hold the us... | Sebastian Redl |
2012-02-16 | Make CXXNewExpr contain only a single initialier, and not hold the used const... | Sebastian Redl |
2012-02-13 | Don't route explicit construction via list-initialization through the functio... | Sebastian Redl |
2012-02-12 | Proper initializer list support for new expressions and type construct expres... | Sebastian Redl |
2012-02-11 | Make sure Sema creates a field for 'this' captures. (Doug, please double-che... | Eli Friedman |
2012-02-10 | Allow implicit capture of 'this' in a lambda even when the capture | Douglas Gregor |
2012-02-08 | Factor C++11 lambda expressions implementation into a separate | Douglas Gregor |
2012-02-08 | When completing a lambda expression, make sure to check and attach the | Douglas Gregor |
2012-02-07 | Introduce basic ASTs for lambda expressions. This covers: | Douglas Gregor |
2012-02-06 | Added location for template keyword in TemplateSpecializationTypeLoc. In the ... | Abramo Bagnara |
2012-02-04 | In C++11 mode, when an integral constant expression is desired and we have a | Richard Smith |
2012-02-04 | Don't allow a value of a scoped enumeration to be used as the first bound for an | Richard Smith |
2012-02-04 | Fix a rejects-valid in C++11: array new of a negative size, or overflowing array | Richard Smith |
2012-02-04 | Don't warn on use of default allocator with an over-aligned type when the | Nick Lewycky |
2012-02-04 | Clang has existing support for debuggers that | Sean Callanan |
2012-02-03 | Make explicit captures which cause implicit captures work correctly. | Eli Friedman |
2012-02-03 | Implement implicit capture for lambda expressions. | Eli Friedman |
2012-02-03 | Note whether a lambda is mutable in the LambdaScopeInfo; this information wil... | Eli Friedman |
2012-02-02 | Add some code to accurately perform odr-used marking for variables per the C+... | Eli Friedman |
2012-02-02 | Split Sema::MarkDeclarationReferenced into multiple functions; the additional... | Eli Friedman |
2012-02-01 | Diagnose the restriction on default arguments in C++11 [expr.prim.lambda]p5. | Douglas Gregor |
2012-02-01 | Introduce the lambda scope before determining explicit captures, which | Douglas Gregor |
2012-02-01 | Improve checking of explicit captures in a C++11 lambda expression: | Douglas Gregor |
2012-02-01 | Diagnose attempts to explicitly capture a __block variable in a lambda. | Douglas Gregor |
2012-01-27 | Added source location for the template keyword in AST template-id expressions. | Abramo Bagnara |
2012-01-26 | Improve efficiency of Sema::MaybeBindToTemporary by working with the | Peter Collingbourne |
2012-01-26 | Slight refactoring; catch yet another case where we were missing an lvalue-to... | Eli Friedman |
2012-01-25 | Fix r148920 to what I actually meant to commit. | Eli Friedman |
2012-01-25 | Add missing check for placeholders. | Eli Friedman |
2012-01-25 | Make sure we correctly treat __is_convertible_to as an unevaluated context. ... | Eli Friedman |
2012-01-24 | Switch PerformImplicitConversion over to use DefaultLvalueConversion for lval... | Eli Friedman |
2012-01-24 | Add a new warning, -Wover-aligned, which detects attempts to use the default | Nick Lewycky |
2012-01-23 | Minor fixups for auto deduction of initializer lists. | Sebastian Redl |
2012-01-23 | Add a source range to the ms path. Spotted by David Blaikie. | Nico Weber |
2012-01-23 | In microsoft mode, downgrade pseudo-destructors on void from error to warning. | Nico Weber |
2012-01-23 | Make sure the AST correctly represents lvalue-to-rvalue conversions where app... | Eli Friedman |
2012-01-20 | Remove PotentiallyPotentiallyEvaluated, and replace it with a much simpler an... | Eli Friedman |
2012-01-18 | Convert DiagnoseEmptyLookup to use correction callbacks. | Kaelyn Uhrain |
2012-01-17 | Remove unreachable code in Clang. (replace with llvm_unreachable where approp... | David Blaikie |
2012-01-16 | Add some calls to MarkDeclarationReferenced, towards a point where every decl... | Eli Friedman |
2012-01-12 | In Objective-C++, actually compute the base type of a member access | Douglas Gregor |
2012-01-11 | Start refactoring code for capturing variables and 'this' so that it is share... | Eli Friedman |
2012-01-11 | Do placeholder conversions on array bounds in both declarators and | John McCall |