aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Basic/DiagnosticParseKinds.td
AgeCommit message (Expand)Author
2012-06-19Improves parsing and semantic analysis for MS __declspec attributes. This in...Aaron Ballman
2012-06-18Extend the error recovery for a template-argument-list terminated by '>>' toRichard Smith
2012-06-06Add pedantic warning -Wempty-translation-unit (C11 6.9p1).Jordan Rose
2012-06-04Test the '__thread' before 'static' warning.Hans Wennborg
2012-05-21objective-c: provide a useful 'fixit' suggestion whenFariborz Jahanian
2012-05-19Missing line break.Dmitri Gribenko
2012-05-16Move the warnings for extra semi-colons under -Wextra-semi. Also, addedRichard Trieu
2012-05-06Put the availability warnings in a group.Rafael Espindola
2012-05-02Revert most of r154844, which was disabled in r155975. Keep around theRichard Smith
2012-05-01Move warn_cxx0x_right_shift_in_template_arg to CXX11Compat group, fromDouglas Gregor
2012-04-28improve error recovery for extra ')'s after a if/switch/while condition. Bef...Chris Lattner
2012-04-27Make the diagnostic for "unexpected ':' in nested name specifier" a bit easie...Nico Weber
2012-04-16Implement the last part of C++ [class.mem]p2, delaying the parsing ofDouglas Gregor
2012-04-10Parsing of C++11 attributes:Richard Smith
2012-04-10Disambiguation of '[[':Richard Smith
2012-04-06Remove "parse error" in favor of more descriptive diagnostics.David Blaikie
2012-04-06Restrict fixit for missing 'class' in template template parameters.David Blaikie
2012-04-05Improve & simplify diagnostic for missing 'class' in template template parame...David Blaikie
2012-04-02Correct error recovery when missing 'class' in a template template parameter.David Blaikie
2012-03-29Reject 'template<typename...Ts> void f(Ts ...(x));'. Add a special-caseRichard Smith
2012-03-23Support for definitions of member enumerations of class templates outside theRichard Smith
2012-03-16Warn on flexible array members when in C89 mode, with -pedantic.David Chisnall
2012-03-12Fix parsing of type-specifier-seq's. Types are syntactically allowed to beRichard Smith
2012-03-08Fix a couple of issues with literal-operator-id parsing, and provide recoveryRichard Smith
2012-03-06Add clang support for new Objective-C literal syntax for NSDictionary, NSArray,Ted Kremenek
2012-03-06User-defined literals: reject string and character UDLs in all places where theRichard Smith
2012-03-02Issue warning when late-parsed attributes have no declaration.DeLesley Hutchins
2012-03-01Reject 'a = {0} = {0}' rather than parsing it as '(a = {0}) = {0}'. AlsoRichard Smith
2012-02-24Back out __decltype warning from r151377: we should either warn on all the GNURichard Smith
2012-02-24__decltype is a GNU extension, not a C++11 extension.Richard Smith
2012-02-22Fix parsing and processing initializer lists in return statements and as dire...Sebastian Redl
2012-02-22Accept braced-init-lists in conditions, and, in passing, dramatically improveRichard Smith
2012-02-18Change wording of warning about using __bridge casts in non-ARC.Ted Kremenek
2012-02-16Improve recovery for lambda expressions that have 'mutable' or aDouglas Gregor
2012-02-16Allow thread safety attributes on function definitions.DeLesley Hutchins
2012-02-13Remove unused diagnostics from include/clang/Basic/Diagnostic*.td files.Dmitri Gribenko
2012-02-03Further downgrade -Warc-bridge-casts-disallowed-in-nonarc to a warning (not m...Ted Kremenek
2012-02-03Make error about using bridge casts in non-ARC mode a warning that is default...Ted Kremenek
2012-01-19Extend the error of invalid token after declarations to include fixits for Richard Trieu
2012-01-18Change the error when a '+=' follows a declaration to suggest a fixit to '=' ...Richard Trieu
2012-01-17Improve diagnostics for dangling '}'.Nico Weber
2012-01-10Update C++11 scoped enumeration support to match the final proposal:Richard Smith
2012-01-06Tweak to r147599 for PR10828: Move the check from the parser into sema, and useRichard Smith
2012-01-05PR10828: Produce a warning when a no-arguments function is declared in blockRichard Smith
2012-01-03Introduce a non-uglified syntax for module imports in Objective-C:Douglas Gregor
2011-12-29Change the diagnostics which said 'accepted as an extension' to instead sayRichard Smith
2011-12-23Mass rename C1x references to C11. The name hasn't proliferated like "C++0x" ...Benjamin Kramer
2011-12-22Add -Wdangling-else.Nico Weber
2011-12-20PR11297: Provide a better diagnostic for code which contains aRichard Smith
2011-12-20Refine error diagnostic for using bridged casts when not using ARC.Ted Kremenek