1. 0f4b5be PR13051: Only suggest the 'template' and 'operator' keywords when performing by Richard Smith · 12 years ago
  2. 8d3607b Allow CorrectTypo to add/modify nested name qualifiers to typos that by Kaelyn Uhrain · 12 years ago
  3. 581deb3 Revert Decl's iterators back to pointer value_type rather than reference value_type by David Blaikie · 12 years ago
  4. 48d798c Fix typos found by http://github.com/lyda/misspell-check by Benjamin Kramer · 12 years ago
  5. 784ae8e Don't allow multiple correction candidates that have the same identifier by Kaelyn Uhrain · 12 years ago
  6. 396e0a8 In TypoCorrectionConsumer, BestResults to CorrectionResults to lessen by Kaelyn Uhrain · 12 years ago
  7. 8165605 Implement simplify_type traits for redecl_iterator. by David Blaikie · 12 years ago
  8. bd4fa45 Remove ref/value inconsistency in redecl_iterator. by David Blaikie · 12 years ago
  9. 704c8f7 Fix bug where a class's (deleted) copy constructor would be implicitly given a by Richard Smith · 12 years ago
  10. 34f9dc4 Directly store TypoResultsMaps in the TypoEditDistanceMap, getting rid of manual deletion. by Benjamin Kramer · 12 years ago
  11. 9cdd1e3 Delete the TypoResultsMap when erasing the pointer to it. by Benjamin Kramer · 12 years ago
  12. 173a37a Remove more redundant lookups. Add a new "all_lookups_iterator" which provides by Nick Lewycky · 12 years ago
  13. 893a6ea Don't treat synthesized ivars as being in the base class for the purpose of by Nick Lewycky · 12 years ago
  14. 6d858d9 Replace the workaround from r153445 with a proper fix. by Kaelyn Uhrain · 12 years ago
  15. 6c4c36c PR10217: Provide diagnostics explaining why an implicitly-deleted special by Richard Smith · 13 years ago
  16. 0179868 When diagnosing an invalid out-of-line redeclaration, don't permit by Douglas Gregor · 13 years ago
  17. 1af83c4 Support for definitions of member enumerations of class templates outside the by Richard Smith · 13 years ago
  18. 65daef1 It never makes sense to do a lookup into a LinkageSpecDecl, so assert that we by Nick Lewycky · 13 years ago
  19. 1b7f9cb Fix PR10447: lazily building name lookup tables for DeclContexts was broken. by Richard Smith · 13 years ago
  20. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 13 years ago
  21. 216f78b Improve our semantic error recovery. by Argyrios Kyrtzidis · 13 years ago
  22. 36f5cfe Support for raw and template forms of numeric user-defined literals, by Richard Smith · 13 years ago
  23. c2bd73b Sema: Don't emit a gajillion calls to sanity() -- an empty function -- in NDEBUG by Daniel Dunbar · 13 years ago
  24. 13a140c ArrayRef'ize various functions in the AST/Parser/Sema. by Ahmed Charles · 13 years ago
  25. f5cd5cc Fix a regression from r151117: ADL requires that we attempt to complete any by Richard Smith · 13 years ago
  26. 8c43dcc Replace some DenseSets with SmallPtrSets. Apart from the "small" optimization, the current implementation is also a denser. by Benjamin Kramer · 13 years ago
  27. 7d5088a Initial refactoring of 'ShouldDeleteSpecialMember', in preparation for providing by Richard Smith · 13 years ago
  28. 3ad02aa Silence a valgrind warning, and remove an unused var. by Kaelyn Uhrain · 13 years ago
  29. 2d4d7fd Improve typo correction involving nested name specifiers. by Kaelyn Uhrain · 13 years ago
  30. 63aae82 Use several weighted factors to determine typo candidate viablity. by Kaelyn Uhrain · 13 years ago
  31. bb3d997 Remove the unused TypoCorrectionConsumer::MaxEditDistance. by Kaelyn Uhrain · 13 years ago
  32. 6f42b62 Basic: import OwningPtr<> into clang namespace by Dylan Noblesmith · 13 years ago
  33. a1f2114 Introduce the lambda scope before determining explicit captures, which by Douglas Gregor · 13 years ago
  34. 16e46dd Make the callback object to Sema::CorrectTypo mandatory. by Kaelyn Uhrain · 13 years ago
  35. 438ee1f In CorrectTypo, use the cached correction as a starting point instead. by Kaelyn Uhrain · 13 years ago
  36. 3026348 More dead code removal (using -Wunreachable-code) by David Blaikie · 13 years ago
  37. bcdd7d9 Remove the now-unused CorrectTypoContext enum. by Kaelyn Uhrain · 13 years ago
  38. ef96ee0 De-virtualize getPreviousDecl() and getMostRecentDecl() when we know by Douglas Gregor · 13 years ago
  39. 117c456 Make sure to consider non-DeclContext scopes properly when finding by Douglas Gregor · 13 years ago
  40. dc98cd0 Fix the caching in CorrectTypo so that other non-keyword identifiers by Kaelyn Uhrain · 13 years ago
  41. 7d5e694 Add initial callback object support to Sema::CorrectTypo. by Kaelyn Uhrain · 13 years ago
  42. f5c9f9f Switch NamespaceDecl from its own hand-rolled redeclaration chain over by Douglas Gregor · 13 years ago
  43. 0782ef2 During name lookup, use redecl_iterator to walk over the redeclaration by Douglas Gregor · 13 years ago
  44. 447af24 When we're performing name lookup for a tag, we still allow ourselves by Douglas Gregor · 13 years ago
  45. da795b4 Implement declaration merging for typedefs loaded from disjoint by Douglas Gregor · 13 years ago
  46. 3f26e0f Minor tweak to name lookup for C/Objective-C: after the first name, still consider whether this is a redeclaration lookup when determining whether to look for the visible declaration by Douglas Gregor · 13 years ago
  47. 7a53740 Test "merging" of typedef types across distinct modules. At present, by Douglas Gregor · 13 years ago
  48. bd9482d Eliminate ObjCForwardProtocolDecl, which is redundant now that by Douglas Gregor · 13 years ago
  49. 27c6da2 Wire up redeclaration chains for Objective-C protocols, so that both by Douglas Gregor · 13 years ago
  50. 1d784b2 Introduce the core infrastructure needed to model redeclaration chains by Douglas Gregor · 13 years ago
  51. 375bb14 Eliminate ObjCClassDecl, which is redundant now that ObjCInterfaceDecl by Douglas Gregor · 13 years ago
  52. 2ccd89c When performing name lookup for a redeclaration, ignore module by Douglas Gregor · 13 years ago
  53. a1be278 Completely re-implement (de-)serialization of declaration by Douglas Gregor · 13 years ago
  54. d63348c When name lookup finds a module-private Objective-C class declaration, by Douglas Gregor · 13 years ago
  55. 5536891 When name lookup comes across a declaration that is in a module that by Douglas Gregor · 13 years ago
  56. 4d604d6 In Microsoft mode, don't perform typo correction in a template member function dependent context because it interferes with the "lookup into dependent bases of class templates" feature. by Francois Pichet · 13 years ago
  57. 10ce932 Make sure that name lookup in C checks whether a name is hidden. by Douglas Gregor · 13 years ago
  58. 3eafbb8 When we perform a lookup for a dependent name that is a member of an by Douglas Gregor · 13 years ago
  59. 5e1cdac Rename TagDecl::isDefinition -> isCompleteDefinition by John McCall · 13 years ago
  60. b001de7 Support for C1x _Atomic specifier (see testcase). This is primarily being committed at the moment to help support C++0x <atomic>, but it should be a solid base for implementing the full specification of C1x _Atomic. by Eli Friedman · 13 years ago
  61. d120596 Added CXAvailability_NotAccessible to indicate that a declaration is available, but not accessible from the current code completion context. by Erik Verbruggen · 13 years ago
  62. 82340e8 Fix Sema::CorrectTypo to ignore found but unresolved symbols by Kaelyn Uhrain · 13 years ago
  63. 8697d30 objective-c: this patch (re)introduces objective-c's default property by Fariborz Jahanian · 13 years ago
  64. 85ea7aa Declare and define implicit move constructor and assignment operator. by Sebastian Redl · 13 years ago
  65. 95ed778 objective-c: Treat top-level objective-c declarations by Fariborz Jahanian · 13 years ago
  66. f0c1d8f Improve overloaded function handling in the typo correction code. by Kaelyn Uhrain · 13 years ago
  67. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  68. b5f6547 Use the new llvm::TinyPtrVector class, which implements exactly what by Chris Lattner · 13 years ago
  69. 98a5403 Fix a bug where a local variable named 'self' is causing by Fariborz Jahanian · 13 years ago
  70. 701d1e7 Fix typo correction crash on overloaded functions, pr10283. by Hans Wennborg · 13 years ago
  71. c5bb9d4 Initialize member. by Benjamin Kramer · 13 years ago
  72. 07f4a06 When adding boolean keywords for typo correction, add either "bool" or by Douglas Gregor · 13 years ago
  73. 5562053 Fix non-determinism in selecting between equal-length names which refer by Chandler Carruth · 13 years ago
  74. 9af7e8e Fix an invalid use of ::back() on an newly emptied vector. Also tighten by Chandler Carruth · 13 years ago
  75. 2ecc28a Dynamically allocate the StringMaps used in typo correction so that we by Douglas Gregor · 13 years ago
  76. d8bba9c Add support for C++ namespace-aware typo correction, e.g., correcting by Douglas Gregor · 13 years ago
  77. e458fda Fix unused label warning. by Jay Foad · 13 years ago
  78. c39b6bc This patch started as an attempt to fix up the horrid naming by Sean Hunt · 13 years ago
  79. 4cc12c6 Clean up the heart of the caching code and miss fewer edge cases. by Sean Hunt · 13 years ago
  80. ab183df Fix a think-o that amazingly didn't show up until I started writing by Sean Hunt · 13 years ago
  81. 431a1cb Actually, you know, fix the problem. by Sean Hunt · 13 years ago
  82. 4dba7b56 Avoid making assumption that this is either a CXXMethodDecl or a by Sean Hunt · 13 years ago
  83. 661c67a Attempt to reapply this patch for caching copy assignment operator by Sean Hunt · 13 years ago
  84. 3bde0ce This change is breaking selfhost. Revert it until I have more time to study it. by Sean Hunt · 13 years ago
  85. 53e669f Implement caching of copy assignment operator lookup. by Sean Hunt · 13 years ago
  86. c530d17 Implement caching for copy constructors in similar situations. by Sean Hunt · 13 years ago
  87. b320e0c Implement caching of default constructors on the resolution table. This by Sean Hunt · 13 years ago
  88. 3054358 Catch the memory leak in a bucket by Sean Hunt · 13 years ago
  89. 308742c Reimplement r132572 on top of a FoldingSet, thus hopefully solving both by Sean Hunt · 13 years ago
  90. c5c9b53 Revert r132572 to figure out why it broke selfhost and clean it up as by Sean Hunt · 13 years ago
  91. 8fd7722 Begin implementing a cache of special member lookups. Currently only by Sean Hunt · 13 years ago
  92. cdee3fe Implement implicit deletion of default constructors. by Sean Hunt · 13 years ago
  93. 37b8c9e Clean up trivial default constructors now. by Sean Hunt · 13 years ago
  94. 7193b3e Don't abuse reinterpret cast to do something the API of PointerUnion by Chandler Carruth · 13 years ago
  95. f1cc1d0 Like the coding standards say, do not use "using namespace std". by Jay Foad · 13 years ago
  96. ad762fc Add support for C++0x's range-based for loops, as specified by the C++11 draft standard (N3291). by Richard Smith · 13 years ago
  97. 42151d5 From Vassil Vassilev: Give external source's last resort lookup a chance, even if an identifier could resolve to a builtin. by Axel Naumann · 13 years ago
  98. f25760e Objective-C++: The global namespace is an associated namespace of an by Douglas Gregor · 13 years ago
  99. 8b5b409 Reinstate r127112, "Propagate new-style exception spec information to ExtProtoInfo.", this time with the missing header. by Sebastian Redl · 14 years ago
  100. 708a866 Revert r127112, "Propagate new-style exception spec information to ExtProtoInfo." by NAKAMURA Takumi · 14 years ago