aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/basic/basic.lookup
AgeCommit message (Expand)Author
2013-04-09Skip transparent contexts when looking for using directives in name lookup.Douglas Gregor
2013-04-08<rdar://problem/13540899> Collect using directives from all of the semantic c...Douglas Gregor
2013-03-27<rdar://problem/13317030> Consider using directives when performing unqualifi...Douglas Gregor
2013-03-26Remove FIXMEs: these are covered by a core issue which we don't yet implementRichard Smith
2013-03-26Implement special-case name lookup for inheriting constructors: memberRichard Smith
2013-03-05Add quotation marks to template names in diagnostics.David Blaikie
2012-10-19Prior to adding the new "expected-no-diagnostics" directive to VerifyDiagnost...Andy Gibbs
2012-08-24Instantiate class template specializations during ADL.John McCall
2012-05-01We don't need a lengthy quote from the wrong standard.Douglas Gregor
2012-05-01Add test cases for r155935.Douglas Gregor
2012-03-10When determining whether an identifier followed by a '<' in a memberDouglas Gregor
2011-12-15Modify how the -verify flag works. Currently, the verification string andRichard Trieu
2011-10-13Update all tests other than Driver/std.cpp to use -std=c++11 rather thanRichard Smith
2011-08-12De-Unicode-ify.NAKAMURA Takumi
2011-08-10When performing the lookup in the current scope for a member access toDouglas Gregor
2011-06-28Update this test to reflect the new (deterministic) order in r134038.Chandler Carruth
2011-06-28Modify test case to allow buildbots to make forward progress. This test shouldChad Rosier
2011-06-28Add support for C++ namespace-aware typo correction, e.g., correctingDouglas Gregor
2011-05-21Teach Sema::ActOnUninitializedDecl() not to try to interpret when oneDouglas Gregor
2011-04-04When emitting a "too many arguments to function call..." error, also include ...Ted Kremenek
2010-09-05"const std::vector<int>*" not "std::vector<int> const*"Chris Lattner
2010-07-07Rip out the C++0x-specific handling of destructor names. The specification is...Sebastian Redl
2010-06-05Add an extension to avoid an error when a global template has the same name asJeffrey Yasskin
2010-05-28A more minimal fix for PR6762.John McCall
2010-05-28Roll back r104941.John McCall
2010-05-28Add a new attribute on records, __attribute__((adl_invisible)), and defineJohn McCall
2010-05-28Test case for r104938.John McCall
2010-05-27When we've parsed a nested-name-specifier in a member accessDouglas Gregor
2010-04-30Fix ADL for types declared in transparent decls, from Alp Toker!Douglas Gregor
2010-04-23Recommit my change to how C++ does elaborated type lookups, now withJohn McCall
2010-04-23Revert "C++ doesn't really use "namespaces" for different kinds of names the ...Daniel Dunbar
2010-04-23C++ doesn't really use "namespaces" for different kinds of names the sameJohn McCall
2010-04-22Whenever we complain about a failed initialization of a function orDouglas Gregor
2010-04-08When a template (without arguments) is passed as a template typeJeffrey Yasskin
2010-03-26Put function templates instantiated from friend declarations in the correctJohn McCall
2010-03-10When pretty-printing tag types, only print the tag if we're in C (andJohn McCall
2010-02-23Implement crazy destructor name lookup semantics differently inDouglas Gregor
2010-01-26Fix two redefinitions in test cases that weren't diagnosed yet, but will be s...Sebastian Redl
2010-01-13Reimplement constructor declarator parsing to cope with template-idsDouglas Gregor
2009-12-22Switch Sema::AddCXXDirectInitializerToDecl over to InitializationSequenceDouglas Gregor
2009-12-22Enter the scope of an initializer for direct-initialization as well asDouglas Gregor
2009-12-20Don't inject the class name until that magical lbrace.John McCall
2009-12-20Test the lookup I wasn't sure would be done properly after the last patch.John McCall
2009-12-19Parse base specifiers within the scope of the class. This is possibly notJohn McCall
2009-12-19Just push a new scope when parsing an out-of-line variable definition.John McCall
2009-12-16Introduce a centralized routine in Sema for diagnosing failed lookups (whenJohn McCall
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar
2009-12-02Use a more rigorous definition of 'class member'. I don't have any evidenceJohn McCall
2009-11-25Tweak expected error message, although we still fail this testDouglas Gregor
2009-11-18Improve on diagnosing type mismatches because of Fariborz Jahanian