1. 8e8fb3b Prior to adding the new "expected-no-diagnostics" directive to VerifyDiagnosticConsumer, make the necessary adjustment to 580 test-cases which will henceforth require this new directive. by Andy Gibbs · 12 years ago
  2. 42f48fb Instantiate class template specializations during ADL. by John McCall · 12 years ago
  3. 294fe20 We don't need a lengthy quote from the wrong standard. by Douglas Gregor · 12 years ago
  4. 587e812 Add test cases for r155935. by Douglas Gregor · 12 years ago
  5. 5a7a5bb When determining whether an identifier followed by a '<' in a member by Douglas Gregor · 12 years ago
  6. 2fe9b7f Modify how the -verify flag works. Currently, the verification string and by Richard Trieu · 13 years ago
  7. 762bb9d Update all tests other than Driver/std.cpp to use -std=c++11 rather than by Richard Smith · 13 years ago
  8. ddddd48 De-Unicode-ify. by NAKAMURA Takumi · 13 years ago
  9. a6d1e76 When performing the lookup in the current scope for a member access to by Douglas Gregor · 13 years ago
  10. be098b3 Update this test to reflect the new (deterministic) order in r134038. by Chandler Carruth · 13 years ago
  11. ea76d8a Modify test case to allow buildbots to make forward progress. This test should by Chad Rosier · 13 years ago
  12. d8bba9c Add support for C++ namespace-aware typo correction, e.g., correcting by Douglas Gregor · 13 years ago
  13. 4337dc7 Teach Sema::ActOnUninitializedDecl() not to try to interpret when one by Douglas Gregor · 13 years ago
  14. 5862f0e When emitting a "too many arguments to function call..." error, also include a note with a location for the function prototype. by Ted Kremenek · 13 years ago
  15. 2f69a81 "const std::vector<int>*" not "std::vector<int> const*" by Chris Lattner · 14 years ago
  16. c0fee50 Rip out the C++0x-specific handling of destructor names. The specification is still in flux and unclear, and our interim workaround was broken. Fixes PR7467. by Sebastian Redl · 14 years ago
  17. 21d07e4 Add an extension to avoid an error when a global template has the same name as by Jeffrey Yasskin · 14 years ago
  18. c7e04da A more minimal fix for PR6762. by John McCall · 14 years ago
  19. 2b7baf0 Roll back r104941. by John McCall · 14 years ago
  20. 1d0a585 Add a new attribute on records, __attribute__((adl_invisible)), and define by John McCall · 14 years ago
  21. de09ed5 Test case for r104938. by John McCall · 14 years ago
  22. 9f716e4 When we've parsed a nested-name-specifier in a member access by Douglas Gregor · 14 years ago
  23. 5402295 Fix ADL for types declared in transparent decls, from Alp Toker! by Douglas Gregor · 14 years ago
  24. 0d6b164 Recommit my change to how C++ does elaborated type lookups, now with by John McCall · 14 years ago
  25. 00b40d3 Revert "C++ doesn't really use "namespaces" for different kinds of names the same", which seems to break most C++ nightly test apps. by Daniel Dunbar · 14 years ago
  26. d04efc9 C++ doesn't really use "namespaces" for different kinds of names the same by John McCall · 14 years ago
  27. a41a8c5 Whenever we complain about a failed initialization of a function or by Douglas Gregor · 14 years ago
  28. db88d8a When a template (without arguments) is passed as a template type by Jeffrey Yasskin · 14 years ago
  29. b1a56e7 Put function templates instantiated from friend declarations in the correct by John McCall · 14 years ago
  30. 7c2342d When pretty-printing tag types, only print the tag if we're in C (and by John McCall · 14 years ago
  31. 93649fd Implement crazy destructor name lookup semantics differently in by Douglas Gregor · 14 years ago
  32. 78a527a Fix two redefinitions in test cases that weren't diagnosed yet, but will be soon. by Sebastian Redl · 15 years ago
  33. 0efc2c1 Reimplement constructor declarator parsing to cope with template-ids by Douglas Gregor · 15 years ago
  34. 90f9382 Switch Sema::AddCXXDirectInitializerToDecl over to InitializationSequence by Douglas Gregor · 15 years ago
  35. b4debae Enter the scope of an initializer for direct-initialization as well as by Douglas Gregor · 15 years ago
  36. f936815 Don't inject the class name until that magical lbrace. by John McCall · 15 years ago
  37. 84d11c7 Test the lookup I wasn't sure would be done properly after the last patch. by John McCall · 15 years ago
  38. bd0dfa5 Parse base specifiers within the scope of the class. This is possibly not by John McCall · 15 years ago
  39. 731ad84 Just push a new scope when parsing an out-of-line variable definition. by John McCall · 15 years ago
  40. 578b69b Introduce a centralized routine in Sema for diagnosing failed lookups (when by John McCall · 15 years ago
  41. a572887 Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. by Daniel Dunbar · 15 years ago
  42. 144238e Use a more rigorous definition of 'class member'. I don't have any evidence by John McCall · 15 years ago
  43. abe36e2 Tweak expected error message, although we still fail this test by Douglas Gregor · 15 years ago
  44. cc5306a Improve on diagnosing type mismatches because of by Fariborz Jahanian · 15 years ago
  45. cdc89c4 Simple test case for [basic.lookup.udir]. by John McCall · 15 years ago
  46. d739021 Switch XFAIL format to match LLVM. by Daniel Dunbar · 15 years ago
  47. 6e24726 Qualified lookup through using declarations. Diagnose a new type of ambiguity. by John McCall · 15 years ago
  48. 9cc7807 Track a class template specialization's point of instantiation separately by John McCall · 15 years ago
  49. c4e7019 Support elaborated dependent types and diagnose tag mismatches. by John McCall · 15 years ago
  50. f1bbbb4 Correctly handle elaborated template ids. Still not handled properly for friends. by John McCall · 15 years ago
  51. 3f9a8a6 Argument-dependent lookup for friend declarations. Add a new decl type, by John McCall · 15 years ago
  52. 67d1a67 First pass at friend semantics. by John McCall · 15 years ago
  53. daa439a Fix a corner case with argument-dependent lookup and overloaded function sets. by Douglas Gregor · 15 years ago
  54. 69be8d6 Improve argument-dependent lookup to find associated classes and by Douglas Gregor · 15 years ago
  55. 0ffd9ff Implement correct name lookup inside an initializer of a C++ class static data member. by Argyrios Kyrtzidis · 15 years ago
  56. b280638 More [basic.lookup.unqual] tests. - p13 and p14 are important failures. by Daniel Dunbar · 15 years ago
  57. cbeedfa Test for [basic.lookup.unqual]p3 by Daniel Dunbar · 15 years ago