Age | Commit message (Expand) | Author |
2012-06-19 | Improves parsing and semantic analysis for MS __declspec attributes. This in... | Aaron Ballman |
2012-06-18 | Extend the error recovery for a template-argument-list terminated by '>>' to | Richard Smith |
2012-06-06 | Add pedantic warning -Wempty-translation-unit (C11 6.9p1). | Jordan Rose |
2012-06-04 | Test the '__thread' before 'static' warning. | Hans Wennborg |
2012-05-21 | objective-c: provide a useful 'fixit' suggestion when | Fariborz Jahanian |
2012-05-19 | Missing line break. | Dmitri Gribenko |
2012-05-16 | Move the warnings for extra semi-colons under -Wextra-semi. Also, added | Richard Trieu |
2012-05-06 | Put the availability warnings in a group. | Rafael Espindola |
2012-05-02 | Revert most of r154844, which was disabled in r155975. Keep around the | Richard Smith |
2012-05-01 | Move warn_cxx0x_right_shift_in_template_arg to CXX11Compat group, from | Douglas Gregor |
2012-04-28 | improve error recovery for extra ')'s after a if/switch/while condition. Bef... | Chris Lattner |
2012-04-27 | Make the diagnostic for "unexpected ':' in nested name specifier" a bit easie... | Nico Weber |
2012-04-16 | Implement the last part of C++ [class.mem]p2, delaying the parsing of | Douglas Gregor |
2012-04-10 | Parsing of C++11 attributes: | Richard Smith |
2012-04-10 | Disambiguation of '[[': | Richard Smith |
2012-04-06 | Remove "parse error" in favor of more descriptive diagnostics. | David Blaikie |
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-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-23 | Support for definitions of member enumerations of class templates outside the | Richard Smith |
2012-03-16 | Warn on flexible array members when in C89 mode, with -pedantic. | David Chisnall |
2012-03-12 | Fix parsing of type-specifier-seq's. Types are syntactically allowed to be | Richard Smith |
2012-03-08 | Fix a couple of issues with literal-operator-id parsing, and provide recovery | Richard Smith |
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-02 | Issue warning when late-parsed attributes have no declaration. | DeLesley Hutchins |
2012-03-01 | Reject 'a = {0} = {0}' rather than parsing it as '(a = {0}) = {0}'. Also | Richard Smith |
2012-02-24 | Back out __decltype warning from r151377: we should either warn on all the GNU | Richard Smith |
2012-02-24 | __decltype is a GNU extension, not a C++11 extension. | Richard Smith |
2012-02-22 | Fix parsing and processing initializer lists in return statements and as dire... | Sebastian Redl |
2012-02-22 | Accept braced-init-lists in conditions, and, in passing, dramatically improve | Richard Smith |
2012-02-18 | Change wording of warning about using __bridge casts in non-ARC. | Ted Kremenek |
2012-02-16 | Improve recovery for lambda expressions that have 'mutable' or a | Douglas Gregor |
2012-02-16 | Allow thread safety attributes on function definitions. | DeLesley Hutchins |
2012-02-13 | Remove unused diagnostics from include/clang/Basic/Diagnostic*.td files. | Dmitri Gribenko |
2012-02-03 | Further downgrade -Warc-bridge-casts-disallowed-in-nonarc to a warning (not m... | Ted Kremenek |
2012-02-03 | Make error about using bridge casts in non-ARC mode a warning that is default... | Ted Kremenek |
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-17 | Improve diagnostics for dangling '}'. | Nico Weber |
2012-01-10 | Update C++11 scoped enumeration support to match the final proposal: | Richard Smith |
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 |
2012-01-03 | Introduce a non-uglified syntax for module imports in Objective-C: | Douglas Gregor |
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-22 | Add -Wdangling-else. | Nico Weber |
2011-12-20 | PR11297: Provide a better diagnostic for code which contains a | Richard Smith |
2011-12-20 | Refine error diagnostic for using bridged casts when not using ARC. | Ted Kremenek |