aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/nested-name-spec.cpp
AgeCommit message (Expand)Author
2010-10-13Generalize the checking for qualification of (non-friend) classDouglas Gregor
2010-10-01Better diagnostic for superfluous scope specifier inside a class definition f...Francois Pichet
2010-07-16Make this grossness default to the error it should always be.Chandler Carruth
2010-07-16Butcher a perfectly reasonable diagnostic to pacify old versions of SWIG.Chandler Carruth
2010-05-14Make sure to search semantic scopes and appropriate template-parameterDouglas Gregor
2010-04-09Turn access control on by default in -cc1.John McCall
2010-04-08Make CXXScopeSpec invalid when incomplete, and propagate that into anyJeffrey Yasskin
2010-04-07Fix some redundant errors by changing CXXScopeSpec::isSet calls intoJeffrey Yasskin
2010-03-31Improve diagnostics when an elaborated-type-specifer containing aDouglas Gregor
2010-03-10When pretty-printing tag types, only print the tag if we're in C (andJohn McCall
2010-02-26Fix an assertion-on-error during tentative constructor parsing byJohn McCall
2010-02-08Fix the crash-on-invalid from PR6259.John McCall
2010-01-26Fix two redefinitions in test cases that weren't diagnosed yet, but will be s...Sebastian Redl
2010-01-13Improve the reporting of non-viable overload candidates by noting the reasonJohn McCall
2010-01-06Improve the diagnostics used to report implicitly-generated class membersJohn McCall
2009-12-19Just push a new scope when parsing an out-of-line variable definition.John McCall
2009-12-19Switch more of Sema::CheckInitializerTypes over toDouglas Gregor
2009-12-18Pull Sema::isAcceptableLookupResult into SemaLookup. Extract the criteria intoJohn McCall
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar
2009-12-07reapply my patch for PR4451, which improves diagnostics for :: vs : confusion.Chris Lattner
2009-12-06revert my previous patch, it is breaking something and I don't have timeChris Lattner
2009-12-06this is really about both PR's, 4452 is "don't crash", 4451 is "recover nicely".Chris Lattner
2009-12-06implement PR4451, improving error recovery for a mistaken : where a :: wasChris Lattner
2009-11-29Remove unnecessary -fms-extensions=0 from tests (this command line syntax is ...Daniel Dunbar
2009-11-25Implement the rules in C++ [basic.link] and C99 6.2.2 for computingDouglas Gregor
2009-10-27Disabling some MS extensions which cause these tests to failJohn Thompson
2009-10-13Improve diagnostics when the parser encounters a declarator with anDouglas Gregor
2009-10-13Unify our diagnostic printing for errors of the form, "we didn't likeDouglas Gregor
2009-09-02Rewrite of our handling of name lookup in C++ member access expressions, e.g.,Douglas Gregor
2009-07-21Fix a crash that occurs in this C++ case:Argyrios Kyrtzidis
2009-06-26Improve error recovery in C++: when we hit 'implicit int' cases in C++,Chris Lattner
2009-06-26fix PR4452, a crash on invalid. The error recovery is still terrible in this...Chris Lattner
2009-04-14Make the implicit-int handling error recovery stuff handle C++Chris Lattner
2009-04-12Fix some C++ error recovery problems in init declarator parsingChris Lattner
2009-04-01Add some more code modification hintsDouglas Gregor
2009-03-25Tighten the setAccess assert. We now allow AS_none if the decl contex is not ...Anders Carlsson
2009-03-25Improve handling of base initializers. We now parse initializers in out of li...Anders Carlsson
2009-03-24Rename clang to clang-cc.Daniel Dunbar
2009-03-23Template instantiation for the declarations of member functions withinDouglas Gregor
2009-03-11Fix various problems with matching out-of-line definitions of staticDouglas Gregor
2009-03-11Add basic, hackish support for instantiation of typedefs in a classDouglas Gregor
2009-03-06Improve recovery from ill-formed scope specifiers. Fixes PR3670.Douglas Gregor
2009-02-08Make the test cases failing due to exact diagnostic matching XFAIL.Sebastian Redl
2009-02-06Diagnose attempts to define a namespace member out-of-line when noDouglas Gregor
2008-12-26Add support for out-of-line definitions of conversion functions and member op...Douglas Gregor
2008-12-16Partial fix for qualified name lookup, such that the lookup of N inDouglas Gregor
2008-12-15Diagnose erroneous uses of out-of-line member definitions and scopeDouglas Gregor
2008-11-23make the 'to match this' diagnostic a note.Chris Lattner
2008-11-23add support for inserting a DeclarationName into a diagnostic directlyChris Lattner
2008-11-19Take care another assert:Argyrios Kyrtzidis