Age | Commit message (Expand) | Author |
2012-03-14 | Parse brace initializers as default arguments. PR12236. | Sebastian Redl |
2012-03-12 | Fix parsing of trailing-return-type. Types are syntactically prohibited from | Richard Smith |
2012-03-12 | Fix parsing of type-specifier-seq's. Types are syntactically allowed to be | Richard Smith |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-03-11 | Document the availability attribute | Douglas Gregor |
2012-03-09 | Support for raw and template forms of numeric user-defined literals, | Richard Smith |
2012-03-08 | Streamline BalancedDelimiterTracker, by eliminating the duplicate | Douglas Gregor |
2012-03-07 | Refactor Clang sema attribute handling. | Michael Han |
2012-03-02 | Issue warning when late-parsed attributes have no declaration. | DeLesley Hutchins |
2012-03-02 | Make late-parsed attributes follow the conventions of ordinary | DeLesley Hutchins |
2012-03-01 | Added support for parsing declspecs on enumerations. Fixes PR8783 | Aaron Ballman |
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-23 | Update parser's disambiguation to cope with braced function-style casts in | Richard Smith |
2012-02-21 | Implement name mangling for lambda expressions that occur within the | Douglas Gregor |
2012-02-16 | Allow thread safety attributes on function definitions. | DeLesley Hutchins |
2012-02-11 | Represent C++ direct initializers as ParenListExprs before semantic analysis | Sebastian Redl |
2012-02-11 | Drive-by fix of incorrect diagnostic, and a test case for said diagnostic. Th... | Sebastian Redl |
2012-02-07 | Make parsing of objc @implementations more robust. | Argyrios Kyrtzidis |
2012-02-05 | Basic: import SmallString<> into clang namespace | Dylan Noblesmith |
2012-02-04 | Move a method from IdentifierTable.h out of line and remove the SmallString i... | Benjamin Kramer |
2012-01-27 | Added source location for the template keyword in AST template-id expressions. | Abramo Bagnara |
2012-01-27 | Avoid redundant NNS qualification in constructor/destructor names. | Abramo Bagnara |
2012-01-27 | Be sure to emit delayed diagnostics after parsing the declaration | John McCall |
2012-01-23 | fixes location of "availability" attribute so warning is displayed at | Fariborz Jahanian |
2012-01-21 | Make clang's AST model sizeof and typeof with potentially-evaluated operands ... | Eli Friedman |
2012-01-20 | Delayed template instantiation of late-parsed attributes. | DeLesley Hutchins |
2012-01-19 | Extend the error of invalid token after declarations to include fixits for | Richard Trieu |
2012-01-18 | Change the error when a '+=' follows a declaration to suggest a fixit to '=' ... | Richard Trieu |
2012-01-13 | objc parsing. Fixes a crash when parsing array initialization | Fariborz Jahanian |
2012-01-12 | Improve 0-argument -Wvexing-parse diagnostic by adding notes with fix-its: | Richard Smith |
2012-01-10 | Update C++11 scoped enumeration support to match the final proposal: | Richard Smith |
2012-01-09 | Extend the diagnostic for a ',' at the end of a declaration where a ';' was | Richard Smith |
2012-01-07 | Fixed TypeofExpr AST and code generation. | Abramo Bagnara |
2012-01-06 | Tweak to r147599 for PR10828: Move the check from the parser into sema, and use | Richard Smith |
2012-01-05 | PR10828: Produce a warning when a no-arguments function is declared in block | Richard Smith |
2011-12-29 | Change the diagnostics which said 'accepted as an extension' to instead say | Richard Smith |
2011-12-23 | Mass rename C1x references to C11. The name hasn't proliferated like "C++0x" ... | Benjamin Kramer |
2011-12-14 | Allow empty argument lists in thread safety attributes | DeLesley Hutchins |
2011-12-10 | Add ability to supply additional message to availability macros, | Fariborz Jahanian |
2011-12-09 | deprecated enum should not warn when used initializing another deprecated enu... | Fariborz Jahanian |
2011-12-04 | Support decltype in nested-name-specifiers. | David Blaikie |
2011-11-30 | Revert most of r145372 for now. Lookahead beyond the ';' in a function | Richard Smith |
2011-11-29 | PR10101: Recover better from a common copy-paste error: if a function | Richard Smith |
2011-11-07 | Tighten up the conditions under which we consider ourselves to be | Douglas Gregor |
2011-10-24 | Simplify parsing ellipsis in Parser::ParseAlignArgument, spotted by Doug. | Peter Collingbourne |
2011-10-23 | Fix grammar for C++11 alignment specifiers, and add a few FIXMEs. | Peter Collingbourne |
2011-10-19 | Improve the diagnostic when a comma ends up at the end of a declarator group | Richard Smith |
2011-10-19 | Improve the warning for cv-qualifiers on free functions, from Ahmed Charles! | Douglas Gregor |