Age | Commit message (Expand) | Author |
2012-04-12 | Added a flag to the parser to skip method bodies. | Erik Verbruggen |
2012-04-11 | Part of PR10101: after a parse error in a declaration, try harder to find the | Richard Smith |
2012-04-11 | Support C++11 attributes at the start of a parameter-declaration. | Richard Smith |
2012-04-10 | Fix GCC's pedantic return-type warning -- this enum is fully covered. | Chandler Carruth |
2012-04-10 | Parsing of C++11 attributes: | Richard Smith |
2012-04-10 | Disambiguation of '[[': | Richard Smith |
2012-04-09 | Fix bugs found by -Wconstant-conversion improvements currently under review. | David Blaikie |
2012-04-06 | Remove "parse error" in favor of more descriptive diagnostics. | David Blaikie |
2012-04-06 | Added a new attribute, objc_root_class, which informs the compiler when a roo... | Patrick Beard |
2012-04-06 | Fixed scoping error for late parsed attributes in nested classes. | DeLesley Hutchins |
2012-04-06 | Restrict fixit for missing 'class' in template template parameters. | David Blaikie |
2012-04-05 | Improve & simplify diagnostic for missing 'class' in template template parame... | David Blaikie |
2012-04-04 | For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this is | Richard Smith |
2012-04-04 | Enter an expression evaluation context when parsing | John McCall |
2012-04-02 | Remove windows line endings. | David Blaikie |
2012-04-02 | Correct error recovery when missing 'class' in a template template parameter. | David Blaikie |
2012-03-29 | Reject 'template<typename...Ts> void f(Ts ...(x));'. Add a special-case | Richard Smith |
2012-03-27 | If we see '(...' where we're expecting an abstract-declarator, that doesn't | Richard Smith |
2012-03-27 | Add cross-referencing comments to ParseDirectDeclarator to note that | Richard Smith |
2012-03-27 | When we see 'Class(X' or 'Class::Class(X' and we suspect that it names a | Richard Smith |
2012-03-24 | [parser] If there are unmatched braces in a function definition, try to | Argyrios Kyrtzidis |
2012-03-23 | Support for definitions of member enumerations of class templates outside the | Richard Smith |
2012-03-20 | Fix the other place where C++98 work for initializer lists was necessary. | Sebastian Redl |
2012-03-18 | Add the missing compatibility warning for braced initializers as default argu... | Sebastian Redl |
2012-03-16 | From Vassil Vassilev: | Axel Naumann |
2012-03-15 | Small cleanup: move trailing-return-type special-casing into | Richard Smith |
2012-03-14 | Parse brace initializers as default arguments. PR12236. | Sebastian Redl |
2012-03-12 | Fix a crash-on-invalid found by -Wlogical-op-parentheses. | David Blaikie |
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 | Fix a couple of issues with literal-operator-id parsing, and provide recovery | Richard Smith |
2012-03-08 | Streamline BalancedDelimiterTracker, by eliminating the duplicate | Douglas Gregor |
2012-03-07 | Silence unused variable warnings. | Benjamin Kramer |
2012-03-07 | Refactor Clang sema attribute handling. | Michael Han |
2012-03-06 | Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, | Ted Kremenek |
2012-03-06 | User-defined literals: reject string and character UDLs in all places where the | Richard Smith |
2012-03-05 | static_assert: Allow any string-literal as the message, not just a character | Richard Smith |
2012-03-05 | AST/stats: Don't effectively use an out-of-line function to return a static | Daniel Dunbar |
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 | Change @import to @__experimental_modules_import. We are not ready to commit... | Ted Kremenek |
2012-03-01 | Avoid examining the AST from the parser, and simplify somewhat. | Richard Smith |
2012-03-01 | Added support for parsing declspecs on enumerations. Fixes PR8783 | Aaron Ballman |
2012-03-01 | Reject 'a = {0} = {0}' rather than parsing it as '(a = {0}) = {0}'. Also | Richard Smith |
2012-02-29 | objective-c: provide fixit hint when atomic property does not | Fariborz Jahanian |
2012-02-29 | Reapply r151638 and r151641. | James Molloy |
2012-02-29 | Make the odr-use logic work correctly for constant-expressions. PR12006. | Eli Friedman |