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