Age | Commit message (Expand) | Author |
2012-07-04 | Renamed RawComment kinds to avoid name clash. | Abramo Bagnara |
2012-06-27 | patch to suggest 'static' function should be 'static inline' | Fariborz Jahanian |
2012-06-22 | Add a warning about almost-Doxygen trailing comments: //< and /*< ... */ | Dmitri Gribenko |
2012-06-20 | Structured comment parsing, first step. | Dmitri Gribenko |
2012-06-16 | Explicitly build __builtin_va_list. | Meador Inge |
2012-06-14 | Look at incomplete FunctionTemplateDecls in order to determine whether | Daniel Jasper |
2012-06-06 | Introduce -Wunused-private-field. If enabled, this warning detects | Daniel Jasper |
2012-05-07 | When we suppress an error due to SFINAE, stash the diagnostic away with the | Richard Smith |
2012-05-07 | Change how we suppress access control in explicit instantiations | John McCall |
2012-05-07 | Refactor DelayedDiagnostics so that it keeps diagnostics in | John McCall |
2012-04-22 | Sema: Initialize NSString method cache members. | Benjamin Kramer |
2012-04-16 | Implement C++11 [expr.prim.general]p3, which permits the use of 'this' | Douglas Gregor |
2012-03-14 | [Sema] Fix SemaDiagnosticBuilder to be inline. | Daniel Dunbar |
2012-03-13 | Spelling. | Daniel Dunbar |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-03-06 | Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, | Ted Kremenek |
2012-02-29 | Reapply r151638 and r151641. | James Molloy |
2012-02-28 | Revert r151638 because it causes assertion hit on PCH creation for Cocoa.h | Argyrios Kyrtzidis |
2012-02-28 | Correctly track tags and enum members defined in the prototype of a function,... | James Molloy |
2012-02-22 | Implement C++11 [expr.call]p11: If the operand to a decltype-specifier is a | Richard Smith |
2012-02-21 | Implement name mangling for lambda expressions that occur within the | Douglas Gregor |
2012-02-14 | Generalize -Wempty-body: warn when statement body is empty (closes: PR11329) | Dmitri Gribenko |
2012-02-12 | Lambdas have a deleted default constructor and a deleted copy | Douglas Gregor |
2012-02-08 | When completing a lambda expression, make sure to check and attach the | Douglas Gregor |
2012-02-07 | Make parsing of objc @implementations more robust. | Argyrios Kyrtzidis |
2012-01-25 | Rework the external Sema source's ReadMethodPool() so that it doesn't | Douglas Gregor |
2012-01-17 | Add Sema::isStdInitializerList, which will be necessary for the upcoming oper... | Sebastian Redl |
2012-01-17 | Delay the creation of the built-in Objective-C class 'Protocol' by | Douglas Gregor |
2012-01-17 | Introduce a CodeCompletionResult::CreateCodeCompletionString() that | Argyrios Kyrtzidis |
2012-01-14 | De-virtualize getPreviousDecl() and getMostRecentDecl() when we know | Douglas Gregor |
2012-01-10 | Per John's comment, it makes sense to ask isLambda on any CXXRecordDecl; make... | Eli Friedman |
2012-01-07 | More lambda work: semantic analysis of capturing 'this'. It's a bit complica... | Eli Friedman |
2012-01-06 | More lambda work. Fixes a minor bug Richard pointed out, makes lookup for la... | Eli Friedman |
2012-01-05 | More lambda work. Tweak the Sema interface slightly. Start adding the pieces... | Eli Friedman |
2012-01-04 | Store the submodules of a module in source order, as they are stored | Douglas Gregor |
2011-12-16 | Fix chaining of ObjCInterfaceDecl redeclarations | Douglas Gregor |
2011-12-02 | Implementing parsing and resolution of module export declarations | Douglas Gregor |
2011-11-29 | Revert r145244. It causes us to create broken ASTs with missing type information | Richard Smith |
2011-11-28 | Removed useless ImplicitCast nodes in explicit cstyle and static casts | Nicola Gigante |
2011-11-26 | Test commit | Nicola Gigante |
2011-11-15 | Fixed plausible overloads location. | Abramo Bagnara |
2011-11-10 | Implicit casts from rvalue to lvalue are not meaningful. Don't accidentally add | Richard Smith |
2011-11-10 | There's no good reason to track temporaries in ExprWithCleanups, | John McCall |
2011-10-28 | Add (hopefully) the last missing lvalue-to-rvalue conversion. Add an assertion | Richard Smith |
2011-10-27 | Make the loading of information attached to an IdentifierInfo from an | Douglas Gregor |
2011-10-19 | -Wc++98-compat: warn if a SFINAE substitution in C++11 suppresses an access | Richard Smith |
2011-10-17 | For modules, all macros that aren't include guards are implicitly | Douglas Gregor |
2011-10-13 | HasFormOfMemberPointer implies IsAddressOfOperand for an overload set. Simplify | Douglas Gregor |
2011-10-13 | Allow calling an overloaded function set by taking the address of the | Douglas Gregor |
2011-10-11 | Catch placeholder types in DefaultLvalueConversion | John McCall |