Age | Commit message (Expand) | Author |
2012-05-11 | When diagnosing inaccessible temporary destructors in decltype expressions, use | Richard Smith |
2012-05-04 | Move Sema::VerifyIntegerConstantExpression() and | Douglas Gregor |
2012-05-04 | Move Sema::RequireNonAbstractType() off of PartialDiagnostic. | Douglas Gregor |
2012-05-04 | Move Sema::RequireCompleteType() and Sema::RequireCompleteExprType() | Douglas Gregor |
2012-04-30 | Remove -Wc++98-compat warning for an outrageously-rare circumstance of 'this' | Richard Smith |
2012-04-28 | Revert "Use the C++11 definition of PODness for __is_pod in C++11 mode." | Benjamin Kramer |
2012-04-28 | Use the C++11 definition of PODness for __is_pod in C++11 mode. | Benjamin Kramer |
2012-04-26 | Two missing -Wc++98-compat warnings, for null pointers as non-type template | Richard Smith |
2012-04-19 | Implements boxed expressions for Objective-C. <rdar://problem/10194391> | Patrick Beard |
2012-04-17 | Implement DR1330 in C++11 mode, to support libstdc++4.7 which uses it. | Richard Smith |
2012-04-16 | Implement C++11 [expr.prim.general]p3, which permits the use of 'this' | Douglas Gregor |
2012-04-12 | Fix some i1/i8 confusion within _Atomic(bool) in IR generation, both | Douglas Gregor |
2012-04-07 | Fix several problems with protected access control: | John McCall |
2012-03-30 | PR10217: Provide diagnostics explaining why an implicitly-deleted special | Richard Smith |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-03-10 | Fix crash & accepts-invalid for array of arrays of user defined type. | David Blaikie |
2012-03-10 | Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to | John McCall |
2012-03-09 | [Sema] Fix a diag change to include a range that appeared intended, but never | Daniel Dunbar |
2012-03-09 | [Sema] Remove dead getSourceRange() call, caught by Clang after marking | Daniel Dunbar |
2012-03-09 | [AST/Sema/libclang] Replace getSourceRange().getBegin() with getLocStart(). | Daniel Dunbar |
2012-03-09 | Perform l2r conversions on delete operands before doing | John McCall |
2012-03-06 | Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, | Ted Kremenek |
2012-03-05 | If the element type of an initializer list has a destructor, make sure we che... | Sebastian Redl |
2012-03-01 | Implement "optimization" for lambda-to-block conversion which inlines the gen... | Eli Friedman |
2012-03-01 | Tighten type-checking a bit to make it clearer how BuildCXXMemberCallExpr is ... | Eli Friedman |
2012-02-29 | Make sure list-initialization of arrays works correctly in explicit type conv... | Eli Friedman |
2012-02-26 | Ensure that we delete destructors in the right cases. Specifically: | Richard Smith |
2012-02-25 | ArrayRef'ize various functions in the AST/Parser/Sema. | Ahmed Charles |
2012-02-25 | Fix assertion (too few Diag arguments) when diagnosing a deleted operator delete | Richard Smith |
2012-02-24 | Fix comment: correct predicate name, reformat comment. | Dmitri Gribenko |
2012-02-24 | Implement a new type trait __is_trivially_constructible(T, Args...) | Douglas Gregor |
2012-02-23 | Provide the __is_trivially_assignable type trait, which provides | Douglas Gregor |
2012-02-22 | Throw away stray CXXDefaultArgExprs. Fixes PR12061. | Sebastian Redl |
2012-02-22 | Implement C++11 [expr.call]p11: If the operand to a decltype-specifier is a | Richard Smith |
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 |