1. d1fed3e During referencing binding, only consider conversion functions for by Douglas Gregor · 14 years ago
  2. 7002f4c Turn access control on by default in -cc1. by John McCall · 14 years ago
  3. 7c2342d When pretty-printing tag types, only print the tag if we're in C (and by John McCall · 14 years ago
  4. 516a6bc In C++98/03, an uninitialized variable that has POD class type will be by Douglas Gregor · 14 years ago
  5. 692f85c Commit Eli's fix for implicit conversions to array type. Fixes PR6264. by Douglas Gregor · 14 years ago
  6. 60c93c9 Migrate the mish-mash of declaration checks in by Douglas Gregor · 15 years ago
  7. d9bafa7 In some contexts, type declarations cannot occur. Pass this information down to ParseClassSpecifier, to make its decision easier. Fixes PR6200. by Sebastian Redl · 15 years ago
  8. 9db7dbb Rework base and member initialization in constructors, with several by Douglas Gregor · 15 years ago
  9. e14654b PR5909 had a test case for binding of const, non-volatile references by Douglas Gregor · 15 years ago
  10. ef06e24 Fix reference-binding when we have a reference to const volatile type; by Douglas Gregor · 15 years ago
  11. 220ccbf Improve the reporting of non-viable overload candidates by noting the reason by John McCall · 15 years ago
  12. b1622a1 Improve the diagnostics used to report implicitly-generated class members by John McCall · 15 years ago
  13. 4a2c19b Switch default arguments over to InitializationSequence. by Eli Friedman · 15 years ago
  14. cfdc81a Initialization improvements: addition of string initialization and a few by Eli Friedman · 15 years ago
  15. 2d48e78 A CXXExprWithTemporaries expression is an lvalue if its subexpression by Douglas Gregor · 15 years ago
  16. 18ef5e2 Switch the initialization required by return statements over to the by Douglas Gregor · 15 years ago
  17. a572887 Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. by Daniel Dunbar · 15 years ago
  18. d87b61f Move initialization via initializer list over to InitializationSequences. by Douglas Gregor · 15 years ago
  19. 20093b4 Reimplement reference initialization (C++ [dcl.init.ref]) using the by Douglas Gregor · 15 years ago
  20. fa184a4 Remove empty test cases by Douglas Gregor · 15 years ago
  21. d490f95 PointerUnion == PointerUnion does not do what I thought it did. Also, fix a thinko in a PointerUnion::get call. by Douglas Gregor · 15 years ago
  22. ba13543 "Incremental" progress on using expressions, by which I mean totally ripping by John McCall · 15 years ago
  23. ba69b3c Fix broken tests, exposed by improved -verify. by Daniel Dunbar · 15 years ago
  24. 4fcfde4 Eliminate &&s in tests. by Daniel Dunbar · 15 years ago
  25. 6e82475 Don't allow definitions of array variables without some size information in C++. Fixed PR5401 by Sebastian Redl · 15 years ago
  26. 923d56d Allow the element type of arrays to be incomplete in C++. by Sebastian Redl · 15 years ago
  27. 85737a7 Report accurate source-location information when rebuilding types during by John McCall · 15 years ago
  28. d75191f In some dependent contexts, incomplete array types persist into FinalizeDeclaratorGroup. Don't require them to have a complete type. This allows us to compile Hello World with the Apache stdcxx library. If you don't use endl, it even links and runs. by Sebastian Redl · 15 years ago
  29. 83913e3 When creating function types, remove any top-level CVR qualifications in the function type argument types. by Anders Carlsson · 15 years ago
  30. 6cc1518 Cleanup and test C++ default arguments. Improvements include: by Douglas Gregor · 15 years ago
  31. 9b31df4 Store the isAddressOfOperand in the UnresolvedDeclRefExpr, so that we can pass it when instantiating the expr. Fixes another member pointer bug. by Anders Carlsson · 15 years ago
  32. f9e48bd It's not allowed to form member pointers to members that have reference type. Add a test for this and the rest of [dcl.mptr]p3. by Anders Carlsson · 15 years ago
  33. 714d35b Fix test. by Anders Carlsson · 15 years ago
  34. e7cf07d Can't have arrays of auto. by Anders Carlsson · 15 years ago