1. 7537945 Promote the warning about extra qualification on a declaration from a by Douglas Gregor · 12 years ago
  2. 0576681 PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers and by Richard Smith · 12 years ago
  3. ef094a1 Ignore corrections to functions with bodies when deciding which by Kaelyn Uhrain · 12 years ago
  4. 8d3607b Allow CorrectTypo to add/modify nested name qualifiers to typos that by Kaelyn Uhrain · 12 years ago
  5. a1c4f7c PR12500: Improve the wording of the diagnostic for a redefinition of a name by Richard Smith · 12 years ago
  6. 6960587 Unify and fix our checking of C++ [dcl.meaning]p1's requirements by Douglas Gregor · 12 years ago
  7. 42acead Diagnose tag and class template declarations with qualified by Douglas Gregor · 12 years ago
  8. 1055393 Give nicer note when a member redeclaration has or lacks 'const' by Kaelyn Uhrain · 13 years ago
  9. 4d9d157 Match type names and give more info for out-of-line function definition errors. by Kaelyn Uhrain · 13 years ago
  10. 239cad7 Update test for r133934. by John McCall · 13 years ago
  11. a7bf7bb Only do delayed diagnostics if there were no errors when parsing the decl. by Argyrios Kyrtzidis · 13 years ago
  12. fa0b48f Test case for previous commit by Douglas Gregor · 13 years ago
  13. 1de34dd When the out-of-line definition differs from the declaration in the return type, by Argyrios Kyrtzidis · 14 years ago
  14. 922fff2 Generalize the checking for qualification of (non-friend) class by Douglas Gregor · 14 years ago
  15. c71d8eb Better diagnostic for superfluous scope specifier inside a class definition for member functions. + Fixit. by Francois Pichet · 14 years ago
  16. 34fa294 Make this grossness default to the error it should always be. by Chandler Carruth · 14 years ago
  17. b21fc4a Butcher a perfectly reasonable diagnostic to pacify old versions of SWIG. by Chandler Carruth · 14 years ago
  18. 00b4b03 Make sure to search semantic scopes and appropriate template-parameter by Douglas Gregor · 14 years ago
  19. 7002f4c Turn access control on by default in -cc1. by John McCall · 14 years ago
  20. 9ab1454 Make CXXScopeSpec invalid when incomplete, and propagate that into any by Jeffrey Yasskin · 14 years ago
  21. edc2877 Fix some redundant errors by changing CXXScopeSpec::isSet calls into by Jeffrey Yasskin · 14 years ago
  22. 1eabb7d Improve diagnostics when an elaborated-type-specifer containing a by Douglas Gregor · 14 years ago
  23. 7c2342d When pretty-printing tag types, only print the tag if we're in C (and by John McCall · 14 years ago
  24. 9ba6166 Fix an assertion-on-error during tentative constructor parsing by by John McCall · 14 years ago
  25. 4c72d3e Fix the crash-on-invalid from PR6259. by John McCall · 15 years ago
  26. 78a527a Fix two redefinitions in test cases that weren't diagnosed yet, but will be soon. by Sebastian Redl · 15 years ago
  27. 220ccbf Improve the reporting of non-viable overload candidates by noting the reason by John McCall · 15 years ago
  28. b1622a1 Improve the diagnostics used to report implicitly-generated class members by John McCall · 15 years ago
  29. 731ad84 Just push a new scope when parsing an out-of-line variable definition. by John McCall · 15 years ago
  30. 7abfbdb Switch more of Sema::CheckInitializerTypes over to by Douglas Gregor · 15 years ago
  31. 1d7c528 Pull Sema::isAcceptableLookupResult into SemaLookup. Extract the criteria into by John McCall · 15 years ago
  32. a572887 Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. by Daniel Dunbar · 15 years ago
  33. 4664649 reapply my patch for PR4451, which improves diagnostics for :: vs : confusion. by Chris Lattner · 15 years ago
  34. 1ade4ca revert my previous patch, it is breaking something and I don't have time by Chris Lattner · 15 years ago
  35. 93fc8fb this is really about both PR's, 4452 is "don't crash", 4451 is "recover nicely". by Chris Lattner · 15 years ago
  36. a564b17 implement PR4451, improving error recovery for a mistaken : where a :: was by Chris Lattner · 15 years ago
  37. a75a92d Remove unnecessary -fms-extensions=0 from tests (this command line syntax is going away). by Daniel Dunbar · 15 years ago
  38. d85b5b9 Implement the rules in C++ [basic.link] and C99 6.2.2 for computing by Douglas Gregor · 15 years ago
  39. b3eca29 Disabling some MS extensions which cause these tests to fail by John Thompson · 15 years ago
  40. a786fdb Improve diagnostics when the parser encounters a declarator with an by Douglas Gregor · 15 years ago
  41. 3f09327 Unify our diagnostic printing for errors of the form, "we didn't like by Douglas Gregor · 15 years ago
  42. 2dd078a Rewrite of our handling of name lookup in C++ member access expressions, e.g., by Douglas Gregor · 15 years ago
  43. f37006b Fix a crash that occurs in this C++ case: by Argyrios Kyrtzidis · 15 years ago
  44. b78d833 Improve error recovery in C++: when we hit 'implicit int' cases in C++, by Chris Lattner · 15 years ago
  45. c8e27cc fix PR4452, a crash on invalid. The error recovery is still terrible in this case by Chris Lattner · 15 years ago
  46. f4382f5 Make the implicit-int handling error recovery stuff handle C++ by Chris Lattner · 15 years ago
  47. 8129edb Fix some C++ error recovery problems in init declarator parsing by Chris Lattner · 15 years ago
  48. a3a8351 Add some more code modification hints by Douglas Gregor · 15 years ago
  49. 1329c27 Tighten the setAccess assert. We now allow AS_none if the decl contex is not a C++ record decl. by Anders Carlsson · 15 years ago
  50. a7b3521 Improve handling of base initializers. We now parse initializers in out of line decls, such as: by Anders Carlsson · 15 years ago
  51. d7d5f02 Rename clang to clang-cc. by Daniel Dunbar · 15 years ago
  52. 2dc0e64 Template instantiation for the declarations of member functions within by Douglas Gregor · 15 years ago
  53. 656de63 Fix various problems with matching out-of-line definitions of static by Douglas Gregor · 15 years ago
  54. 4fdf1fa Add basic, hackish support for instantiation of typedefs in a class by Douglas Gregor · 15 years ago
  55. 9fa14a5 Improve recovery from ill-formed scope specifiers. Fixes PR3670. by Douglas Gregor · 15 years ago
  56. ddf7e99 Make the test cases failing due to exact diagnostic matching XFAIL. by Sebastian Redl · 16 years ago
  57. 4ce205f Diagnose attempts to define a namespace member out-of-line when no by Douglas Gregor · 16 years ago
  58. 70316a0 Add support for out-of-line definitions of conversion functions and member operators by Douglas Gregor · 16 years ago
  59. 3dde5a3 Partial fix for qualified name lookup, such that the lookup of N in by Douglas Gregor · 16 years ago
  60. 584049d Diagnose erroneous uses of out-of-line member definitions and scope by Douglas Gregor · 16 years ago
  61. 28eb7e9 make the 'to match this' diagnostic a note. by Chris Lattner · 16 years ago
  62. 011bb4e add support for inserting a DeclarationName into a diagnostic directly by Chris Lattner · 16 years ago
  63. 77407b8 Take care another assert: by Argyrios Kyrtzidis · 16 years ago
  64. 08b2c37 Fix this: by Argyrios Kyrtzidis · 16 years ago
  65. 5239304 Introduce ScopedDecl::getLexicalDeclContext() which is different from ScopedDecl::getDeclContext() when there are nested-names. by Argyrios Kyrtzidis · 16 years ago
  66. ef6e647 Implement Sema support for C++ nested-name-specifiers. by Argyrios Kyrtzidis · 16 years ago