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