summaryrefslogtreecommitdiffstats
path: root/test/CXX/basic
Commit message (Expand)AuthorAgeFilesLines
* C++ [basic.scope.hiding] allows an ordinary name to hide a non-tagDouglas Gregor2010-10-231-0/+24
* Always treat 'main' as an extern "C" function, so that we detectDouglas Gregor2010-10-211-0/+5
* "const std::vector<int>*" not "std::vector<int> const*"Chris Lattner2010-09-051-1/+1
* Rip out the C++0x-specific handling of destructor names. The specification is...Sebastian Redl2010-07-071-0/+3
* Add test case that I forgot to commit with r107354 (the implementationDouglas Gregor2010-07-011-0/+18
* Add an extension to avoid an error when a global template has the same name asJeffrey Yasskin2010-06-051-0/+46
* A more minimal fix for PR6762.John McCall2010-05-281-0/+11
* Roll back r104941.John McCall2010-05-281-11/+0
* Add a new attribute on records, __attribute__((adl_invisible)), and defineJohn McCall2010-05-281-0/+11
* Test case for r104938.John McCall2010-05-281-0/+11
* When we've parsed a nested-name-specifier in a member accessDouglas Gregor2010-05-271-1/+1
* Fix ADL for types declared in transparent decls, from Alp Toker!Douglas Gregor2010-04-301-0/+15
* Recommit my change to how C++ does elaborated type lookups, now withJohn McCall2010-04-231-0/+60
* Revert "C++ doesn't really use "namespaces" for different kinds of names the ...Daniel Dunbar2010-04-231-52/+0
* C++ doesn't really use "namespaces" for different kinds of names the sameJohn McCall2010-04-231-0/+52
* Whenever we complain about a failed initialization of a function orDouglas Gregor2010-04-221-1/+1
* When a template (without arguments) is passed as a template typeJeffrey Yasskin2010-04-081-2/+2
* Put function templates instantiated from friend declarations in the correctJohn McCall2010-03-261-0/+12
* When a declaration of a function is missing an exception specificationDouglas Gregor2010-03-242-3/+19
* When pretty-printing tag types, only print the tag if we're in C (andJohn McCall2010-03-101-2/+2
* Implement crazy destructor name lookup semantics differently inDouglas Gregor2010-02-233-0/+77
* Check for redefinitions in MergeVarDecl. This finds redefinitions of globals ...Sebastian Redl2010-02-021-0/+21
* Fix two redefinitions in test cases that weren't diagnosed yet, but will be s...Sebastian Redl2010-01-261-1/+1
* Reimplement constructor declarator parsing to cope with template-idsDouglas Gregor2010-01-131-0/+27
* Tweak the text of several main() diagnostics and punch a hole specifically forJohn McCall2009-12-241-1/+1
* Switch Sema::AddCXXDirectInitializerToDecl over to InitializationSequenceDouglas Gregor2009-12-221-1/+1
* Enter the scope of an initializer for direct-initialization as well asDouglas Gregor2009-12-221-0/+2
* Don't inject the class name until that magical lbrace.John McCall2009-12-201-0/+8
* Test the lookup I wasn't sure would be done properly after the last patch.John McCall2009-12-201-5/+25
* Parse base specifiers within the scope of the class. This is possibly notJohn McCall2009-12-191-0/+9
* Just push a new scope when parsing an out-of-line variable definition.John McCall2009-12-191-1/+6
* Introduce a centralized routine in Sema for diagnosing failed lookups (whenJohn McCall2009-12-161-1/+1
* Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar2009-12-1529-29/+29
* Fix test.Anders Carlsson2009-12-131-1/+1
* More improvements to checking allocation and deallocation functions.Anders Carlsson2009-12-131-0/+32
* Correctly diagnose [basic.stc.dynamic.allocation]p1Anders Carlsson2009-12-121-0/+12
* Improve diagnostics for malformed delete operator function declarations.Anders Carlsson2009-12-111-0/+11
* Use a more rigorous definition of 'class member'. I don't have any evidenceJohn McCall2009-12-021-0/+20
* Implement the rules in C++ [basic.link] and C99 6.2.2 for computingDouglas Gregor2009-11-251-0/+11
* Tweak expected error message, although we still fail this testDouglas Gregor2009-11-251-1/+1
* Improve on diagnosing type mismatches because of Fariborz Jahanian2009-11-181-3/+3
* Simple test case for [basic.lookup.udir].John McCall2009-11-101-0/+35
* Switch XFAIL format to match LLVM.Daniel Dunbar2009-11-032-2/+2
* Qualified lookup through using declarations. Diagnose a new type of ambiguity.John McCall2009-10-104-0/+166
* Spell clang-cc correctly.Daniel Dunbar2009-09-221-1/+1
* When implicitly declaring operators new, new[], delete, and delete[],Douglas Gregor2009-09-152-0/+32
* Track a class template specialization's point of instantiation separatelyJohn McCall2009-09-111-4/+2
* Support elaborated dependent types and diagnose tag mismatches.John McCall2009-09-111-1/+3
* Correctly handle elaborated template ids. Still not handled properly for fri...John McCall2009-09-041-0/+18
* Argument-dependent lookup for friend declarations. Add a new decl type,John McCall2009-08-111-0/+42