| Commit message (Expand) | Author | Age | Files | Lines |
| * | Virtual method overrides can no longer have mismatched calling conventions. ... | Aaron Ballman | 2012-12-09 | 1 | -0/+1 |
| * | Properly compute triviality for explicitly-defaulted or deleted special members. | Richard Smith | 2012-12-08 | 1 | -182/+3 |
| * | Fix analysis based warnings so that all warnings are emitted when compiling | DeLesley Hutchins | 2012-12-07 | 1 | -1/+3 |
| * | Add a bit on FunctionDecl/ObjCMethodDecl to indicate if there was a body | Argyrios Kyrtzidis | 2012-12-06 | 1 | -0/+8 |
| * | In C++, if we hit an error in the class-head, don't try to parse the class body. | Richard Smith | 2012-12-05 | 1 | -1/+3 |
| * | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 2012-12-04 | 1 | -14/+13 |
| * | Merge function types in C. | Rafael Espindola | 2012-11-29 | 1 | -0/+6 |
| * | Don't return a pointer to an UnresolvedSetImpl in the CXXRecordDecl interface, | Argyrios Kyrtzidis | 2012-11-28 | 1 | -4/+4 |
| * | Allow an ASTConsumer to selectively skip function bodies while parsing. Patch | Richard Smith | 2012-11-27 | 1 | -0/+3 |
| * | Add r168519 back, but with a fix to also merge the used flag in variables. | Rafael Espindola | 2012-11-25 | 1 | -0/+8 |
| * | Revert r168519, "Merge used flags so that we don't have to iterate on isUsed.... | NAKAMURA Takumi | 2012-11-24 | 1 | -4/+0 |
| * | Merge used flags so that we don't have to iterate on isUsed. With this change | Rafael Espindola | 2012-11-23 | 1 | -0/+4 |
| * | PR14381: Never skip constexpr function bodies when code-completing. We may need | Richard Smith | 2012-11-19 | 1 | -0/+16 |
| * | A step towards sorting out handling of triviality of special members in C++11. | Richard Smith | 2012-11-16 | 1 | -13/+22 |
| * | Provide the correct mangling and linkage for certain unnamed nested classes. | David Blaikie | 2012-11-14 | 1 | -0/+5 |
| * | For classes that have the warn_unused_result attribute, don't apply the | Kaelyn Uhrain | 2012-11-13 | 1 | -1/+5 |
| * | Enable C++11 attribute syntax for warn_unused_result and allow it to be | Kaelyn Uhrain | 2012-11-12 | 1 | -0/+8 |
| * | PR13788: Don't perform checks on the initializer of a dependently-typed | Richard Smith | 2012-11-09 | 1 | -4/+3 |
| * | Avoid to write function name in comment. Thanks to Dmitri Gribenko. | Abramo Bagnara | 2012-11-08 | 1 | -7/+6 |
| * | Readded line removed by mistake. | Abramo Bagnara | 2012-11-08 | 1 | -0/+1 |
| * | Fixed converted ConstantArrayTypeLoc range. Added a missing testcase for Cons... | Abramo Bagnara | 2012-11-08 | 1 | -19/+71 |
| * | Partially roll back r166898; it exposed a bug in the standard. | Richard Smith | 2012-10-29 | 1 | -1/+2 |
| * | Revert functional part of r166896 and just suppress -Wunneeded-internal-decla... | Richard Smith | 2012-10-28 | 1 | -8/+7 |
| * | When determining whether to try evaluating the initializer of a variable, check | Richard Smith | 2012-10-28 | 1 | -1/+1 |
| * | In -Wunneeded-internal-declaration, suppress the warning for variables which | Richard Smith | 2012-10-28 | 1 | -1/+8 |
| * | Fix false positive in -Wunused-variable when a ctor call make involve cleanups. | David Blaikie | 2012-10-24 | 1 | -0/+2 |
| * | Add a new warning -Wmissing-variable-declarations, to warn about variables | Eli Friedman | 2012-10-23 | 1 | -0/+11 |
| * | Rework implementation of DR1492: Apply the resolution to operator delete too, | Richard Smith | 2012-10-20 | 1 | -0/+14 |
| * | Allow objc_requires_super to be used to check class methods as well. | Jordan Rose | 2012-10-19 | 1 | -10/+3 |
| * | Implement C++ 10.3p16 - overrides involving deleted functions must match. | David Blaikie | 2012-10-17 | 1 | -11/+38 |
| * | Fix warnings introduced by r165826. | DeLesley Hutchins | 2012-10-12 | 1 | -0/+2 |
| * | Thread-safety analysis: support multiple thread-safety attributes on | DeLesley Hutchins | 2012-10-12 | 1 | -0/+17 |
| * | Fix typo correction of one qualified name to another. | David Blaikie | 2012-10-12 | 1 | -3/+9 |
| * | When storing the C++ overridden methods, store them once for the | Argyrios Kyrtzidis | 2012-10-09 | 1 | -1/+2 |
| * | Fixed FunctionTypeLoc source range. | Abramo Bagnara | 2012-10-04 | 1 | -6/+21 |
| * | Fixed ParamDecl source range for implicit typed k&r parameters. | Abramo Bagnara | 2012-10-04 | 1 | -0/+3 |
| * | Fix scope location when parsing GNU attributes. | Michael Han | 2012-10-04 | 1 | -2/+1 |
| * | Change how the SelfReferenceChecker handles MemberExpr. Instead of treating | Richard Trieu | 2012-10-03 | 1 | -11/+39 |
| * | Tweak diagnostic text to indicate that __weak on a local variable is only all... | Ted Kremenek | 2012-10-02 | 1 | -1/+3 |
| * | PR13978: A 'decltype' DeclSpec has an expression representation, not a type | Richard Smith | 2012-10-01 | 1 | -1/+1 |
| * | Cleaning up the self initialization checker. | Richard Trieu | 2012-10-01 | 1 | -31/+38 |
| * | Move the 'find macro by spelling' infrastructure to the Preprocessor class and | Dmitri Gribenko | 2012-09-29 | 1 | -1/+1 |
| * | Add a warning (off by default) for repeated use of the same weak property. | Jordan Rose | 2012-09-28 | 1 | -0/+15 |
| * | Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S... | Sylvestre Ledru | 2012-09-27 | 1 | -2/+2 |
| * | Fix a typo 'iff' => 'if' | Sylvestre Ledru | 2012-09-27 | 1 | -2/+2 |
| * | Fix for r163013 regression and further __interface enhancement. | John McCall | 2012-09-25 | 1 | -5/+6 |
| * | Make warnings about uninitialized fields include the field name. | Hans Wennborg | 2012-09-21 | 1 | -3/+1 |
| * | Include types when a definition's type differs from a prior declaration. | David Blaikie | 2012-09-20 | 1 | -1/+1 |
| * | Handle lambdas where the lambda-declarator is an explicit "(void)". PR13854. | Eli Friedman | 2012-09-20 | 1 | -15/+17 |
| * | Per discussion on cfe-dev, remove -Wunique-enums entirely. There | Ted Kremenek | 2012-09-18 | 1 | -230/+0 |