1. b26331b Enable -Wnull-conversion for non-integral target types (eg: double). by David Blaikie · 12 years ago
  2. 19a2702 Extend the error recovery for a template-argument-list terminated by '>>' to by Richard Smith · 12 years ago
  3. f548512 Enable -Wunused-private-field with -Wunused. by Benjamin Kramer · 12 years ago
  4. 1fdda36 Add a test for r158229 (overlapping fixits). This was PR10696! by Jordan Rose · 12 years ago
  5. 9f63a45 Disallow using ObjC literals in direct comparisons (== and friends). by Jordan Rose · 12 years ago
  6. b7fe579 Teach the FixIt in DiagnoseInvalidRedeclaration how to replace the written by Kaelyn Uhrain · 12 years ago
  7. 033a9c0 Make suggestions for mismatched enum arguments to printf/scanf. by Jordan Rose · 12 years ago
  8. 2a53189 Add a test for '%@' suggestion for classes. by Jordan Rose · 12 years ago
  9. 153acdb Suggest '%@' for Objective-C objects in ObjC format strings. by Jordan Rose · 12 years ago
  10. 6d1de1b objc: position of 'fixit' was off by one. by Fariborz Jahanian · 12 years ago
  11. 18df0eb objective-c: provide a useful 'fixit' suggestion when by Fariborz Jahanian · 12 years ago
  12. 1de6a6c objective-c. Fixes a 'fixit' where location of by Fariborz Jahanian · 12 years ago
  13. 2c0abf4 Add FixItHint for -Wnull-conversion to initialize with an appropriate literal. by David Blaikie · 12 years ago
  14. 392b3f5 Imrpove the note text for when a non-type decl hides a tag type by Kaelyn Uhrain · 12 years ago
  15. aec2ac6 Add note to help explain why a tag such as 'struct' is needed to refer by Kaelyn Uhrain · 12 years ago
  16. 2b90f76 Add an error message with fixit hint for changing '.' to '->'. by Kaelyn Uhrain · 12 years ago
  17. 1e77b65 Re-add the closing '}' for the namespace I accidentally deleted when by Kaelyn Uhrain · 12 years ago
  18. 434ed26 In Parser::isCXXDeclarationSpecifier, consider a non-type identifier by Kaelyn Uhrain · 12 years ago
  19. d2008e2 Implement support for null non-type template arguments for non-type by Douglas Gregor · 12 years ago
  20. b2f6820 Added a new attribute, objc_root_class, which informs the compiler when a root class is intentionally declared. by Patrick Beard · 12 years ago
  21. 673720d Fix diagnostic text for r154163. by David Blaikie · 12 years ago
  22. 9df1b96 Restrict fixit for missing 'class' in template template parameters. by David Blaikie · 12 years ago
  23. a823545 Improve & simplify diagnostic for missing 'class' in template template parameter. by David Blaikie · 12 years ago
  24. 6d858d9 Replace the workaround from r153445 with a proper fix. by Kaelyn Uhrain · 12 years ago
  25. 460ef13 Correct error recovery when missing 'class' in a template template parameter. by David Blaikie · 12 years ago
  26. 9988f28 Reject 'template<typename...Ts> void f(Ts ...(x));'. Add a special-case by Richard Smith · 12 years ago
  27. 0179868 When diagnosing an invalid out-of-line redeclaration, don't permit by Douglas Gregor · 12 years ago
  28. 07b49a8 Use character literals for vexing initialization fixit hints. by David Blaikie · 12 years ago
  29. 3376277 Fix a couple of issues with literal-operator-id parsing, and provide recovery by Richard Smith · 12 years ago
  30. 2fb4ae3 Implement C++11 [lex.ext]p10 for string and character literals: a ud-suffix not by Richard Smith · 12 years ago
  31. 9ae3a36 improve on diagnostic when block captures uninitialized by Fariborz Jahanian · 12 years ago
  32. a34194f improve on diagnostic and provide a fixit hint when by Fariborz Jahanian · 12 years ago
  33. b65e24a Test fix-it added in r152198. by Richard Smith · 12 years ago
  34. b3f7542 And libclang cursor/indexing support for new Objective-C NSArray/NSDictionary/NSNumber literals. by Ted Kremenek · 12 years ago
  35. bab0d39 Test for my last patch. // rdar://10267155. by Fariborz Jahanian · 12 years ago
  36. 92dc035 Tests for the fixits which Doug added in r150727. by Richard Smith · 12 years ago
  37. 85b29a4 Reject continue/break statements within members of local functions nested within by Richard Smith · 12 years ago
  38. 3ac109c Allow implicit capture of 'this' in a lambda even when the capture by Douglas Gregor · 12 years ago
  39. d37b360 PR11684, core issue 1417: by Richard Smith · 12 years ago
  40. 61d679a Introduce 3 new fixit options: by Argyrios Kyrtzidis · 13 years ago
  41. fcaf27e Extend the error of invalid token after declarations to include fixits for by Richard Trieu · 13 years ago
  42. d6c7c67 Change the error when a '+=' follows a declaration to suggest a fixit to '=' instead of just suggesting a ';'. by Richard Trieu · 13 years ago
  43. 7984de3 Improve 0-argument -Wvexing-parse diagnostic by adding notes with fix-its: by Richard Smith · 13 years ago
  44. bdad7a2 Update C++11 scoped enumeration support to match the final proposal: by Richard Smith · 13 years ago
  45. 1c94c16 Extend the diagnostic for a ',' at the end of a declaration where a ';' was by Richard Smith · 13 years ago
  46. dd4b350 Fix constexpr handling to allow 'extern constexpr' variable declarations. We no by Richard Smith · 13 years ago
  47. 2fe9b7f Modify how the -verify flag works. Currently, the verification string and by Richard Trieu · 13 years ago
  48. 58196dc Revert most of r145372 for now. Lookahead beyond the ';' in a function by Richard Smith · 13 years ago
  49. 6e1fd33 Add fix-it to remove 'typedef' from function template definitions. Such a token by Richard Smith · 13 years ago
  50. 874d253 PR10101: Recover better from a common copy-paste error: if a function by Richard Smith · 13 years ago
  51. 98e13ea Make the -verify bits in this test actually test something, and fix a few cases by Richard Smith · 13 years ago
  52. 0706df4 Improve the diagnostic when a comma ends up at the end of a declarator group by Richard Smith · 13 years ago
  53. 43f5103 Improve the warning for cv-qualifiers on free functions, from Ahmed Charles! by Douglas Gregor · 13 years ago
  54. 762bb9d Update all tests other than Driver/std.cpp to use -std=c++11 rather than by Richard Smith · 13 years ago
  55. 6dbba4f Catch placeholder types in DefaultLvalueConversion by John McCall · 13 years ago
  56. 856ebfb Remove FIXME obsoleted by change r141279 for PR11067. by Richard Smith · 13 years ago
  57. d1e40d5 Make -fobjc-nonfragile-abi the -cc1 default, since it's the by John McCall · 13 years ago
  58. 947be19 Mark the ExtWarn for in-class initialization of static const float members as a GNU extension. Don't extend the scope of this extension to all literal types in C++0x mode. by Richard Smith · 13 years ago
  59. c6d990a constexpr: semantic checking for constexpr variables. by Richard Smith · 13 years ago
  60. 2315318 PR10867: Work around a bug in lit. Multiple RUN: lines are joined with &&, so: by Richard Smith · 13 years ago
  61. f0c1d8f Improve overloaded function handling in the typo correction code. by Kaelyn Uhrain · 13 years ago
  62. f78c4e5 Introduce a Fix-It for the "missing sentinel" warning, adding an by Douglas Gregor · 13 years ago
  63. d5612a2 Add a fixit for removal of unused label. by Anna Zaks · 13 years ago
  64. 1d05d42 Another test case for the &/* mismatch fixit. by Anna Zaks · 13 years ago
  65. 6722155 Add */& mismatch fixit generation to the Sema::DiagnoseAssignmentResult(). by Anna Zaks · 13 years ago
  66. 8eaefdc Provide fixit for static use of objective-c type by Fariborz Jahanian · 13 years ago
  67. dcf1011 objective-c: Provide a 'fixit' when class was used by Fariborz Jahanian · 13 years ago
  68. feb4fa1 Add FixIt hint for missing 'id' type. // rdar://9615045 by Fariborz Jahanian · 13 years ago
  69. ffe9edd Addressing code review comments for commit 135509 - Add FixItHints in case a C++ function call is missing * or & operators on by Anna Zaks · 13 years ago
  70. b89fe6b Add FixItHints in case a C++ function call is missing * or & operators on one/several of it's parameters (addresses http://llvm.org/PR5941). by Anna Zaks · 13 years ago
  71. 3a348c8 Add a hackaround to avoid the crash in PR10355. However, our recovery by Douglas Gregor · 13 years ago
  72. 07f4a06 When adding boolean keywords for typo correction, add either "bool" or by Douglas Gregor · 13 years ago
  73. d8bba9c Add support for C++ namespace-aware typo correction, e.g., correcting by Douglas Gregor · 13 years ago
  74. 6326e05 Provide fix-it for '.' <-> '->' for Objective-C ivar/property access. by Fariborz Jahanian · 13 years ago
  75. b5303aa Allow the fixit for missing ':' in the ?: ternary operator if it is pointing by Argyrios Kyrtzidis · 13 years ago
  76. 02a444d Fixed test case asserts due to checkin of r130710. by Chad Rosier · 13 years ago
  77. 3b88735 Extend Sema::ClassifyName() to support C++, ironing out a few issues by Douglas Gregor · 13 years ago
  78. 6add6fb Fix test by Douglas Gregor · 13 years ago
  79. 27766d2 Improve diagnostics for typo correction via Sema::ClassifyName(), by by Douglas Gregor · 13 years ago
  80. 312eadb Implement a new identifier-classification scheme where Sema by Douglas Gregor · 13 years ago
  81. b8a9d3b Fixit suggestion for adding missing tag name should have a space after the tag name. Fixes rdar://9295072 by Argyrios Kyrtzidis · 13 years ago
  82. 162e1c1 Support for C++11 (non-template) alias declarations. by Richard Smith · 13 years ago
  83. 6027461 Issue the 2nd fixit even if fix-it hint is supressed. // rdar://9091893 by Fariborz Jahanian · 13 years ago
  84. 81ab3cf No fixit hint for builtin expressions which are by Fariborz Jahanian · 13 years ago
  85. 4147d30 Improve recovery (error + fix-it) when parsing type dependent template name without the "template" keyword. by Francois Pichet · 13 years ago
  86. 12e3ece Provide Fixit warning when 'auto' is intended as storage by Fariborz Jahanian · 13 years ago
  87. 5f39f70 Remove the Fix-It for "main must return 'int'", which is not always by Douglas Gregor · 13 years ago
  88. c37b736 Disable this test until we figure out what madness it causes by Douglas Gregor · 14 years ago
  89. 9c13f5b Sign by Douglas Gregor · 14 years ago
  90. 30af47f I hate this test by Douglas Gregor · 14 years ago
  91. 808bedf Something is seriously wonky with this test by Douglas Gregor · 14 years ago
  92. bddf8eb Fix silly typo by Douglas Gregor · 14 years ago
  93. 53e4b55 Teach typo correction not to return the same keyword that matches a by Douglas Gregor · 14 years ago
  94. b164a19 Minor tweak so that fixit-errors.c is never compiled; it crashes and pops up a crash dialog on my system. by Anders Carlsson · 14 years ago
  95. 9a632ea Fix handling of property and ivar lookup in typo correction; the two by Douglas Gregor · 14 years ago
  96. 06ff47b Disable this test while I track down the platform-specific issue by Douglas Gregor · 14 years ago
  97. b4226ff Bah, incompetence by Douglas Gregor · 14 years ago
  98. f98402d Eliminate another ordering dependency in typo correction. Re-enable typo.m, which seems to be working properly. by Douglas Gregor · 14 years ago
  99. 31df9be Disable this test again, which naturally fails on every platform except the one I'm building with by Douglas Gregor · 14 years ago
  100. 6eaac8b When performing typo correction, keep track of whether the last lookup by Douglas Gregor · 14 years ago