Age | Commit message (Expand) | Author |
2012-05-01 | Implement simplify_type traits for redecl_iterator. | David Blaikie |
2012-05-01 | Remove ref/value inconsistency in redecl_iterator. | David Blaikie |
2012-04-20 | Fix bug where a class's (deleted) copy constructor would be implicitly given a | Richard Smith |
2012-04-14 | Directly store TypoResultsMaps in the TypoEditDistanceMap, getting rid of man... | Benjamin Kramer |
2012-04-13 | Delete the TypoResultsMap when erasing the pointer to it. | Benjamin Kramer |
2012-04-03 | Remove more redundant lookups. Add a new "all_lookups_iterator" which provides | Nick Lewycky |
2012-04-03 | Don't treat synthesized ivars as being in the base class for the purpose of | Nick Lewycky |
2012-04-03 | Replace the workaround from r153445 with a proper fix. | Kaelyn Uhrain |
2012-03-30 | PR10217: Provide diagnostics explaining why an implicitly-deleted special | Richard Smith |
2012-03-26 | When diagnosing an invalid out-of-line redeclaration, don't permit | Douglas Gregor |
2012-03-23 | Support for definitions of member enumerations of class templates outside the | Richard Smith |
2012-03-13 | It never makes sense to do a lookup into a LinkageSpecDecl, so assert that we | Nick Lewycky |
2012-03-13 | Fix PR10447: lazily building name lookup tables for DeclContexts was broken. | Richard Smith |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-03-09 | Improve our semantic error recovery. | Argyrios Kyrtzidis |
2012-03-09 | Support for raw and template forms of numeric user-defined literals, | Richard Smith |
2012-03-08 | Sema: Don't emit a gajillion calls to sanity() -- an empty function -- in NDEBUG | Daniel Dunbar |
2012-02-25 | ArrayRef'ize various functions in the AST/Parser/Sema. | Ahmed Charles |
2012-02-25 | Fix a regression from r151117: ADL requires that we attempt to complete any | Richard Smith |
2012-02-23 | Replace some DenseSets with SmallPtrSets. Apart from the "small" optimization... | Benjamin Kramer |
2012-02-18 | Initial refactoring of 'ShouldDeleteSpecialMember', in preparation for providing | Richard Smith |
2012-02-15 | Silence a valgrind warning, and remove an unused var. | Kaelyn Uhrain |
2012-02-15 | Improve typo correction involving nested name specifiers. | Kaelyn Uhrain |
2012-02-14 | Use several weighted factors to determine typo candidate viablity. | Kaelyn Uhrain |
2012-02-07 | Remove the unused TypoCorrectionConsumer::MaxEditDistance. | Kaelyn Uhrain |
2012-02-05 | Basic: import OwningPtr<> into clang namespace | Dylan Noblesmith |
2012-02-01 | Introduce the lambda scope before determining explicit captures, which | Douglas Gregor |
2012-01-31 | Make the callback object to Sema::CorrectTypo mandatory. | Kaelyn Uhrain |
2012-01-23 | In CorrectTypo, use the cached correction as a starting point instead. | Kaelyn Uhrain |
2012-01-20 | More dead code removal (using -Wunreachable-code) | David Blaikie |
2012-01-19 | Remove the now-unused CorrectTypoContext enum. | Kaelyn Uhrain |
2012-01-14 | De-virtualize getPreviousDecl() and getMostRecentDecl() when we know | Douglas Gregor |
2012-01-13 | Make sure to consider non-DeclContext scopes properly when finding | Douglas Gregor |
2012-01-11 | Fix the caching in CorrectTypo so that other non-keyword identifiers | Kaelyn Uhrain |
2012-01-11 | Add initial callback object support to Sema::CorrectTypo. | Kaelyn Uhrain |
2012-01-07 | Switch NamespaceDecl from its own hand-rolled redeclaration chain over | Douglas Gregor |
2012-01-06 | During name lookup, use redecl_iterator to walk over the redeclaration | Douglas Gregor |
2012-01-05 | When we're performing name lookup for a tag, we still allow ourselves | Douglas Gregor |
2012-01-04 | Implement declaration merging for typedefs loaded from disjoint | Douglas Gregor |
2012-01-03 | Minor tweak to name lookup for C/Objective-C: after the first name, still con... | Douglas Gregor |
2012-01-03 | Test "merging" of typedef types across distinct modules. At present, | Douglas Gregor |
2012-01-01 | Eliminate ObjCForwardProtocolDecl, which is redundant now that | Douglas Gregor |
2012-01-01 | Wire up redeclaration chains for Objective-C protocols, so that both | Douglas Gregor |
2012-01-01 | Introduce the core infrastructure needed to model redeclaration chains | Douglas Gregor |
2011-12-27 | Eliminate ObjCClassDecl, which is redundant now that ObjCInterfaceDecl | Douglas Gregor |
2011-12-20 | When performing name lookup for a redeclaration, ignore module | Douglas Gregor |
2011-12-17 | Completely re-implement (de-)serialization of declaration | Douglas Gregor |
2011-12-15 | When name lookup finds a module-private Objective-C class declaration, | Douglas Gregor |
2011-12-14 | When name lookup comes across a declaration that is in a module that | Douglas Gregor |
2011-12-03 | In Microsoft mode, don't perform typo correction in a template member functio... | Francois Pichet |