aboutsummaryrefslogtreecommitdiff
path: root/test/CXX
AgeCommit message (Expand)Author
2010-11-18Calculate the value kind of an expression when it's created andJohn McCall
2010-11-15Implement C++0x [temp.func.order]p3 (aka DR532) properly. InDouglas Gregor
2010-11-12Implement C++ [over.match.funcs]p4 as it concerns partial ordering ofDouglas Gregor
2010-11-12When performing initialization of a copy of a temporary object, useDouglas Gregor
2010-11-10Instantiate class member template partial specialization declarationsDouglas Gregor
2010-11-08Properly diagnose invalid casts to function references. Patch byDouglas Gregor
2010-11-07A union cannot contain static data members or data members of reference type.Anders Carlsson
2010-11-02When performing template argument deduction against a template-id,Douglas Gregor
2010-10-23C++ [basic.scope.hiding] allows an ordinary name to hide a non-tagDouglas Gregor
2010-10-22In the presence of using declarations, we can find the same classDouglas Gregor
2010-10-22When performing name lookup for a namespace definition, only look intoDouglas Gregor
2010-10-21Diagnose the declaration of template template parameters thatDouglas Gregor
2010-10-21Always treat 'main' as an extern "C" function, so that we detectDouglas Gregor
2010-10-20Access control polish: drop the note on the original declaration andJohn McCall
2010-10-20When matching template parameter lists to template-ids in a scope specifierJohn McCall
2010-10-19When instantiating a dependently-scoped friend function declaration,John McCall
2010-10-19Instantiate enclosing template parameter lists when instantiating friends.John McCall
2010-10-19Uncomputable contexts are always records but can exist.John McCall
2010-10-19Redirect templated friend class decls to a new Sema callback andJohn McCall
2010-10-18Implement the first half of [dcl.attr.override]p6.Anders Carlsson
2010-10-17Implement [dcl.attr.override]p2 and add tests for p1 and p2.Anders Carlsson
2010-10-17Add test for [dcl.attr.final]p4.Anders Carlsson
2010-10-15Diagnose C++ [class.mem]p13-14, where a class member has the same nameDouglas Gregor
2010-10-15Add builtin conditional operator candidates for scoped enumerationDouglas Gregor
2010-10-14template-ids are looked up differently in friend declarations.John McCall
2010-10-14Make sure that we diagnose invalid qualifiers on friend functions.Douglas Gregor
2010-10-13Support friend function declarations in local classes correctly.John McCall
2010-10-13Teach the warning about unnamed/local types in template arguments toDouglas Gregor
2010-10-12Introduce support for emitting diagnostics (warnings + their notes)Douglas Gregor
2010-10-12Handle dependent friends more explicitly and deal with the possibilityJohn McCall
2010-10-12PR8325: don't do destructor checking when a pointer is thrown.Eli Friedman
2010-10-12When finalizing a function template specialization following templateDouglas Gregor
2010-10-12If we end up instantiating a function parameter whose default argumentDouglas Gregor
2010-10-12Parse default arguments within member functions in source order, fromDouglas Gregor
2010-10-12Progress.John McCall
2010-10-05In Sema's TryRefInitWithConversionFunction, suppress user conversions for the...Argyrios Kyrtzidis
2010-09-20Check that an overloaded function name, when used by the ! operator,Douglas Gregor
2010-09-16When dealing with an anonymous enumeration declared in functionDouglas Gregor
2010-09-13Parentheses around address non-type template argument is demoted to an extens...Abramo Bagnara
2010-09-12Diagnose the instantiation of variables (including static dataDouglas Gregor
2010-09-12When diagnosing C++ [temp.expl.spec]p3 in C++98/03 mode, downgrade theDouglas Gregor
2010-09-12Implement the "note" in C++ [over.built]p1, which is actually meant toDouglas Gregor
2010-09-10Test destructors in delete expressions and of temporaries for throwing.Sebastian Redl
2010-09-10Address Doug's comments.Sebastian Redl
2010-09-10Eli helped me understand how evaluation contexts work.Sebastian Redl
2010-09-10Test CXXNoexceptExpr codegen and serialization.Sebastian Redl
2010-09-10Add another small test case.Sebastian Redl
2010-09-10Tests for noexcept in templates.Sebastian Redl
2010-09-10First version of a testcase, plus fixes.Sebastian Redl
2010-09-06remove curly quotes, patch by Dimitry Andric!Chris Lattner