1. cb73154 Don't crash when forming a destructor name on an incomplete type. by John McCall · 8 years ago
  2. 76377dc Print nested name specifiers for typedefs and type aliases by Alex Lorenz · 9 years ago
  3. 42b98e2 Fix a crash on invalid code. by Richard Trieu · 9 years ago
  4. 25a8afa Handle unscoped enumeration in nested name specifier. by Serge Pavlov · 11 years ago
  5. f80df57 Update error message text. by Serge Pavlov · 11 years ago
  6. 458ea76 Improve error recovery around colon. by Serge Pavlov · 11 years ago
  7. c582f01 Revert "Improve error recovery around colon." by Reid Kleckner · 11 years ago
  8. a88f278 Improve error recovery around colon. by Serge Pavlov · 11 years ago
  9. 6a7ffbe Improve error recovery around colon. by Serge Pavlov · 11 years ago
  10. 6cab596 Improve diagnostic for using non-class/namespace/scoped enum in a nested name specifier. by David Blaikie · 12 years ago
  11. 6ed7251 Revert "Don't require -re suffix on -verify directives with regexes." by Alp Toker · 12 years ago
  12. 9b395ef Don't require -re suffix on -verify directives with regexes. by Hans Wennborg · 12 years ago
  13. cda4b6d Change semantics of regex expectations in the diagnostic verifier by Hans Wennborg · 12 years ago
  14. a230224 Implement DR482: namespace members can be redeclared with a qualified name by Richard Smith · 12 years ago
  15. fb8b7b9 PR17567: Improve diagnostic for a mistyped constructor name. If we see something by Richard Smith · 12 years ago
  16. d136f60 Reword a diagnostic to avoid a confusing implication that it might be talking by Richard Smith · 12 years ago
  17. e2358c1 Fix crash w/BlockDecl and invalid qualified decl. by Eli Friedman · 12 years ago
  18. d364078 Fix r184381 so the test doesn't fail. Sorry for the inconvenience, I thought I had checked it. by Eli Friedman · 12 years ago
  19. 5c85dd9 Extra test for diagnostic in Sema::BuildCXXNestedNameSpecifier. by Eli Friedman · 12 years ago
  20. 230826c Don't mark a type specifier as "owned" if there is no declaration to own. by Douglas Gregor · 12 years ago
  21. 43bc036 Promote the warning about extra qualification on a declaration from a by Douglas Gregor · 13 years ago
  22. 4f605af PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers and by Richard Smith · 13 years ago
  23. 389e9c2 Ignore corrections to functions with bodies when deciding which by Kaelyn Uhrain · 13 years ago
  24. 493ea63 Allow CorrectTypo to add/modify nested name qualifiers to typos that by Kaelyn Uhrain · 13 years ago
  25. 8226984 PR12500: Improve the wording of the diagnostic for a redefinition of a name by Richard Smith · 13 years ago
  26. b7d17dd Unify and fix our checking of C++ [dcl.meaning]p1's requirements by Douglas Gregor · 14 years ago
  27. 31feb33 Diagnose tag and class template declarations with qualified by Douglas Gregor · 14 years ago
  28. 1a6eb99 Give nicer note when a member redeclaration has or lacks 'const' by Kaelyn Uhrain · 14 years ago
  29. 7d9bc63 Match type names and give more info for out-of-line function definition errors. by Kaelyn Uhrain · 14 years ago
  30. 1ee9fc0 Update test for r133934. by John McCall · 14 years ago
  31. d8a2771 Only do delayed diagnostics if there were no errors when parsing the decl. by Argyrios Kyrtzidis · 14 years ago
  32. d7295ba Test case for previous commit by Douglas Gregor · 15 years ago
  33. 3d32086 When the out-of-line definition differs from the declaration in the return type, by Argyrios Kyrtzidis · 15 years ago
  34. a007d36 Generalize the checking for qualification of (non-friend) class by Douglas Gregor · 15 years ago
  35. 6d76e6c Better diagnostic for superfluous scope specifier inside a class definition for member functions. + Fixit. by Francois Pichet · 15 years ago
  36. eeb3c84 Make this grossness default to the error it should always be. by Chandler Carruth · 15 years ago
  37. 9339605 Butcher a perfectly reasonable diagnostic to pacify old versions of SWIG. by Chandler Carruth · 15 years ago
  38. f3d3ae6 Make sure to search semantic scopes and appropriate template-parameter by Douglas Gregor · 15 years ago
  39. 3155f57 Turn access control on by default in -cc1. by John McCall · 15 years ago
  40. c76498d Make CXXScopeSpec invalid when incomplete, and propagate that into any by Jeffrey Yasskin · 15 years ago
  41. 4e150f8 Fix some redundant errors by changing CXXScopeSpec::isSet calls into by Jeffrey Yasskin · 15 years ago
  42. f5af358 Improve diagnostics when an elaborated-type-specifer containing a by Douglas Gregor · 15 years ago
  43. 85f9055 When pretty-printing tag types, only print the tag if we're in C (and by John McCall · 16 years ago
  44. 1f476a1 Fix an assertion-on-error during tentative constructor parsing by by John McCall · 16 years ago
  45. 69f9dbc Fix the crash-on-invalid from PR6259. by John McCall · 16 years ago
  46. 497c0a4 Fix two redefinitions in test cases that weren't diagnosed yet, but will be soon. by Sebastian Redl · 16 years ago
  47. e1ac8d1 Improve the reporting of non-viable overload candidates by noting the reason by John McCall · 16 years ago
  48. fd0b2f8 Improve the diagnostics used to report implicitly-generated class members by John McCall · 16 years ago
  49. 1f4ee7b Just push a new scope when parsing an out-of-line variable definition. by John McCall · 16 years ago
  50. a4b592a Switch more of Sema::CheckInitializerTypes over to by Douglas Gregor · 16 years ago
  51. ea305ed Pull Sema::isAcceptableLookupResult into SemaLookup. Extract the criteria into by John McCall · 16 years ago
  52. 8fbe78f Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. by Daniel Dunbar · 16 years ago
  53. 1c42803 reapply my patch for PR4451, which improves diagnostics for :: vs : confusion. by Chris Lattner · 16 years ago
  54. ed08523 revert my previous patch, it is breaking something and I don't have time by Chris Lattner · 16 years ago
  55. 2b6651e this is really about both PR's, 4452 is "don't crash", 4451 is "recover nicely". by Chris Lattner · 16 years ago
  56. 71d5bf1 implement PR4451, improving error recovery for a mistaken : where a :: was by Chris Lattner · 16 years ago
  57. 7427fe2 Remove unnecessary -fms-extensions=0 from tests (this command line syntax is going away). by Daniel Dunbar · 16 years ago
  58. f73b282 Implement the rules in C++ [basic.link] and C99 6.2.2 for computing by Douglas Gregor · 16 years ago
  59. ec87bb5 Disabling some MS extensions which cause these tests to fail by John Thompson · 16 years ago
  60. 15e5602 Improve diagnostics when the parser encounters a declarator with an by Douglas Gregor · 16 years ago
  61. e40876a Unify our diagnostic printing for errors of the form, "we didn't like by Douglas Gregor · 16 years ago
  62. b7bfe79 Rewrite of our handling of name lookup in C++ member access expressions, e.g., by Douglas Gregor · 16 years ago
  63. 1a176f0 Fix a crash that occurs in this C++ case: by Argyrios Kyrtzidis · 16 years ago
  64. d86a13e Improve error recovery in C++: when we hit 'implicit int' cases in C++, by Chris Lattner · 16 years ago
  65. 5558e9f fix PR4452, a crash on invalid. The error recovery is still terrible in this case by Chris Lattner · 16 years ago
  66. b4a8fe8 Make the implicit-int handling error recovery stuff handle C++ by Chris Lattner · 16 years ago
  67. 869c661 Fix some C++ error recovery problems in init declarator parsing by Chris Lattner · 16 years ago
  68. 170512f Add some more code modification hints by Douglas Gregor · 16 years ago
  69. a28908d Tighten the setAccess assert. We now allow AS_none if the decl contex is not a C++ record decl. by Anders Carlsson · 17 years ago
  70. 75fdaa4 Improve handling of base initializers. We now parse initializers in out of line decls, such as: by Anders Carlsson · 17 years ago
  71. a45cf5b Rename clang to clang-cc. by Daniel Dunbar · 17 years ago
  72. f4f296d Template instantiation for the declarations of member functions within by Douglas Gregor · 17 years ago
  73. 04e9a03 Fix various problems with matching out-of-line definitions of static by Douglas Gregor · 17 years ago
  74. 2689746 Add basic, hackish support for instantiation of typedefs in a class by Douglas Gregor · 17 years ago
  75. c2fd626 Improve recovery from ill-formed scope specifiers. Fixes PR3670. by Douglas Gregor · 17 years ago
  76. aa400d8 Make the test cases failing due to exact diagnostic matching XFAIL. by Sebastian Redl · 17 years ago
  77. 8af63e4 Diagnose attempts to define a namespace member out-of-line when no by Douglas Gregor · 17 years ago
  78. 1dc9826 Add support for out-of-line definitions of conversion functions and member operators by Douglas Gregor · 17 years ago
  79. 1950029 Partial fix for qualified name lookup, such that the lookup of N in by Douglas Gregor · 17 years ago
  80. ad59050 Diagnose erroneous uses of out-of-line member definitions and scope by Douglas Gregor · 17 years ago
  81. 03c4041 make the 'to match this' diagnostic a note. by Chris Lattner · 17 years ago
  82. f7e69d5 add support for inserting a DeclarationName into a diagnostic directly by Chris Lattner · 17 years ago
  83. 0d09c49 Take care another assert: by Argyrios Kyrtzidis · 17 years ago
  84. 89709ac Fix this: by Argyrios Kyrtzidis · 17 years ago
  85. 9e59b57 Introduce ScopedDecl::getLexicalDeclContext() which is different from ScopedDecl::getDeclContext() when there are nested-names. by Argyrios Kyrtzidis · 17 years ago
  86. 16ac9be Implement Sema support for C++ nested-name-specifiers. by Argyrios Kyrtzidis · 17 years ago