| Commit message (Expand) | Author | Age | Files | Lines |
* | Give nicer note when a member redeclaration has or lacks 'const' | Kaelyn Uhrain | 2011-10-10 | 1 | -3/+3 |
* | Match type names and give more info for out-of-line function definition errors. | Kaelyn Uhrain | 2011-08-04 | 1 | -2/+2 |
* | Update test for r133934. | John McCall | 2011-06-27 | 1 | -1/+1 |
* | Only do delayed diagnostics if there were no errors when parsing the decl. | Argyrios Kyrtzidis | 2011-06-24 | 1 | -0/+19 |
* | Test case for previous commit | Douglas Gregor | 2011-02-24 | 1 | -0/+3 |
* | When the out-of-line definition differs from the declaration in the return type, | Argyrios Kyrtzidis | 2011-02-05 | 1 | -0/+5 |
* | Generalize the checking for qualification of (non-friend) class | Douglas Gregor | 2010-10-13 | 1 | -0/+10 |
* | Better diagnostic for superfluous scope specifier inside a class definition f... | Francois Pichet | 2010-10-01 | 1 | -0/+4 |
* | Make this grossness default to the error it should always be. | Chandler Carruth | 2010-07-16 | 1 | -1/+1 |
* | Butcher a perfectly reasonable diagnostic to pacify old versions of SWIG. | Chandler Carruth | 2010-07-16 | 1 | -1/+1 |
* | Make sure to search semantic scopes and appropriate template-parameter | Douglas Gregor | 2010-05-14 | 1 | -0/+16 |
* | Turn access control on by default in -cc1. | John McCall | 2010-04-09 | 1 | -1/+1 |
* | Make CXXScopeSpec invalid when incomplete, and propagate that into any | Jeffrey Yasskin | 2010-04-08 | 1 | -5/+3 |
* | Fix some redundant errors by changing CXXScopeSpec::isSet calls into | Jeffrey Yasskin | 2010-04-07 | 1 | -3/+3 |
* | Improve diagnostics when an elaborated-type-specifer containing a | Douglas Gregor | 2010-03-31 | 1 | -1/+1 |
* | When pretty-printing tag types, only print the tag if we're in C (and | John McCall | 2010-03-10 | 1 | -7/+7 |
* | Fix an assertion-on-error during tentative constructor parsing by | John McCall | 2010-02-26 | 1 | -2/+3 |
* | Fix the crash-on-invalid from PR6259. | John McCall | 2010-02-08 | 1 | -0/+9 |
* | Fix two redefinitions in test cases that weren't diagnosed yet, but will be s... | Sebastian Redl | 2010-01-26 | 1 | -1/+1 |
* | Improve the reporting of non-viable overload candidates by noting the reason | John McCall | 2010-01-13 | 1 | -1/+1 |
* | Improve the diagnostics used to report implicitly-generated class members | John McCall | 2010-01-06 | 1 | -1/+1 |
* | Just push a new scope when parsing an out-of-line variable definition. | John McCall | 2009-12-19 | 1 | -0/+13 |
* | Switch more of Sema::CheckInitializerTypes over to | Douglas Gregor | 2009-12-19 | 1 | -2/+2 |
* | Pull Sema::isAcceptableLookupResult into SemaLookup. Extract the criteria into | John McCall | 2009-12-18 | 1 | -2/+15 |
* | Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. | Daniel Dunbar | 2009-12-15 | 1 | -1/+1 |
* | reapply my patch for PR4451, which improves diagnostics for :: vs : confusion. | Chris Lattner | 2009-12-07 | 1 | -5/+3 |
* | revert my previous patch, it is breaking something and I don't have time | Chris Lattner | 2009-12-06 | 1 | -3/+5 |
* | this is really about both PR's, 4452 is "don't crash", 4451 is "recover nicely". | Chris Lattner | 2009-12-06 | 1 | -1/+1 |
* | implement PR4451, improving error recovery for a mistaken : where a :: was | Chris Lattner | 2009-12-06 | 1 | -5/+3 |
* | Remove unnecessary -fms-extensions=0 from tests (this command line syntax is ... | Daniel Dunbar | 2009-11-29 | 1 | -1/+1 |
* | Implement the rules in C++ [basic.link] and C99 6.2.2 for computing | Douglas Gregor | 2009-11-25 | 1 | -1/+0 |
* | Disabling some MS extensions which cause these tests to fail | John Thompson | 2009-10-27 | 1 | -1/+1 |
* | Improve diagnostics when the parser encounters a declarator with an | Douglas Gregor | 2009-10-13 | 1 | -3/+3 |
* | Unify our diagnostic printing for errors of the form, "we didn't like | Douglas Gregor | 2009-10-13 | 1 | -6/+6 |
* | Rewrite of our handling of name lookup in C++ member access expressions, e.g., | Douglas Gregor | 2009-09-02 | 1 | -1/+1 |
* | Fix a crash that occurs in this C++ case: | Argyrios Kyrtzidis | 2009-07-21 | 1 | -1/+4 |
* | Improve error recovery in C++: when we hit 'implicit int' cases in C++, | Chris Lattner | 2009-06-26 | 1 | -2/+1 |
* | fix PR4452, a crash on invalid. The error recovery is still terrible in this... | Chris Lattner | 2009-06-26 | 1 | -0/+24 |
* | Make the implicit-int handling error recovery stuff handle C++ | Chris Lattner | 2009-04-14 | 1 | -3/+3 |
* | Fix some C++ error recovery problems in init declarator parsing | Chris Lattner | 2009-04-12 | 1 | -1/+2 |
* | Add some more code modification hints | Douglas Gregor | 2009-04-01 | 1 | -2/+2 |
* | Tighten the setAccess assert. We now allow AS_none if the decl contex is not ... | Anders Carlsson | 2009-03-25 | 1 | -1/+0 |
* | Improve handling of base initializers. We now parse initializers in out of li... | Anders Carlsson | 2009-03-25 | 1 | -1/+2 |
* | Rename clang to clang-cc. | Daniel Dunbar | 2009-03-24 | 1 | -1/+1 |
* | Template instantiation for the declarations of member functions within | Douglas Gregor | 2009-03-23 | 1 | -2/+1 |
* | Fix various problems with matching out-of-line definitions of static | Douglas Gregor | 2009-03-11 | 1 | -0/+14 |
* | Add basic, hackish support for instantiation of typedefs in a class | Douglas Gregor | 2009-03-11 | 1 | -2/+6 |
* | Improve recovery from ill-formed scope specifiers. Fixes PR3670. | Douglas Gregor | 2009-03-06 | 1 | -4/+7 |
* | Make the test cases failing due to exact diagnostic matching XFAIL. | Sebastian Redl | 2009-02-08 | 1 | -0/+2 |
* | Diagnose attempts to define a namespace member out-of-line when no | Douglas Gregor | 2009-02-06 | 1 | -0/+25 |