| Commit message (Expand) | Author | Age | Files | Lines |
* | [Concepts] Fix incorrect control flow when TryAnnotateTypeConstraint annotate... | Saar Raz | 2020-03-19 | 1 | -2/+3 |
* | Revert "[Concepts] Fix incorrect control flow when TryAnnotateTypeConstraint ... | Hans Wennborg | 2020-03-18 | 1 | -3/+2 |
* | [Concepts] Fix incorrect control flow when TryAnnotateTypeConstraint annotate... | Saar Raz | 2020-03-17 | 1 | -2/+3 |
* | [c++20] Implement P0846R0: allow (ADL-only) calls to template-ids whose | Richard Smith | 2019-05-09 | 1 | -1/+1 |
* | When typo-correcting a function name, consider correcting to a type name | Richard Smith | 2019-05-09 | 1 | -8/+8 |
* | [Parser] Avoid correcting delayed typos in array subscript multiple times. | Volodymyr Sapsai | 2019-05-01 | 1 | -1/+1 |
* | Refactor checking of switch conditions and case values. | Richard Smith | 2018-07-26 | 1 | -1/+1 |
* | Fix some handling of AST nodes with diagnostics. | Richard Trieu | 2018-03-28 | 1 | -1/+1 |
* | Improve diagnosis of unknown template name. | Richard Smith | 2017-05-10 | 1 | -4/+7 |
* | [Sema] Avoid an invalid redefinition error that was presented for | Alex Lorenz | 2017-04-28 | 1 | -0/+27 |
* | Correct typos after acting on invalid subscript expressions | David Majnemer | 2016-02-19 | 1 | -0/+9 |
* | [Parse] Make sure we don't forget to diagnose typos in exprs | David Majnemer | 2016-02-18 | 1 | -0/+5 |
* | Correct more typos in conditional expressions | David Majnemer | 2016-02-17 | 1 | -0/+2 |
* | Teach typo correction to properly handle mapping declarations to their | Richard Smith | 2015-12-29 | 1 | -1/+8 |
* | Don't correct non-class using declarations to class members. | Kaelyn Takata | 2015-09-30 | 1 | -0/+16 |
* | [lex] Provide a valid token when __has_include is found outside of a pp direc... | Benjamin Kramer | 2015-03-29 | 1 | -0/+6 |
* | Add a new flag, -fspell-checking-limit=<number> to control how many times we'... | Nick Lewycky | 2014-12-16 | 1 | -14/+349 |
* | Parse: Don't reorder tokens using ConsumeToken | David Majnemer | 2014-12-15 | 1 | -0/+5 |
* | Wire up delayed typo correction to DiagnoseEmptyLookup and set up | Kaelyn Takata | 2014-11-20 | 1 | -3/+4 |
* | Wire up LookupMemberExpr to use the new TypoExpr. | Kaelyn Takata | 2014-10-27 | 1 | -5/+5 |
* | Move TypoCorrection filtering into the TypoCorrectionConsumer and make it inc... | Kaelyn Takata | 2014-06-11 | 1 | -9/+0 |
* | Use the appropriate SourceLocation for the template backtrace when doing | Nick Lewycky | 2014-01-11 | 1 | -2/+2 |
* | Revert "Don't require -re suffix on -verify directives with regexes." | Alp Toker | 2013-12-14 | 1 | -1/+1 |
* | Don't require -re suffix on -verify directives with regexes. | Hans Wennborg | 2013-12-14 | 1 | -1/+1 |
* | Change semantics of regex expectations in the diagnostic verifier | Hans Wennborg | 2013-12-11 | 1 | -1/+1 |
* | Allow CorrectTypo to replace CXXScopeSpecifiers that refer to classes. | Kaelyn Uhrain | 2013-10-19 | 1 | -4/+8 |
* | Avoid the hard-coded limit on the number of typo corrections attempted. | Kaelyn Uhrain | 2013-09-27 | 1 | -33/+6 |
* | Attempt typo correction for function calls with the wrong number of arguments. | Kaelyn Uhrain | 2013-07-08 | 1 | -0/+11 |
* | Look for corrections in enclosing namespaces that require a global NestedName... | Kaelyn Uhrain | 2013-07-02 | 1 | -0/+12 |
* | When typo correction produces an overloaded result when looking up a member, | Nick Lewycky | 2013-05-07 | 1 | -1/+43 |
* | Give the default CorrectionCandidateCallback::ValidateCandidate some | Kaelyn Uhrain | 2013-04-03 | 1 | -0/+10 |
* | When adding a NamedDecl to a correction, add the underlying Decl (via | Kaelyn Uhrain | 2012-11-19 | 1 | -0/+14 |
* | Better diagnostics for range-based for loops with bad range types. | Sam Panzer | 2012-08-21 | 1 | -1/+1 |
* | PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers and | Richard Smith | 2012-08-18 | 1 | -4/+6 |
* | In Sema::ClassifyName, try to avoid nonsensical corrections to | Kaelyn Uhrain | 2012-06-29 | 1 | -0/+7 |
* | Perform typo correction for base class specifiers. | Kaelyn Uhrain | 2012-06-22 | 1 | -0/+8 |
* | PR13051: Only suggest the 'template' and 'operator' keywords when performing | Richard Smith | 2012-06-08 | 1 | -0/+13 |
* | Don't allow multiple correction candidates that have the same identifier | Kaelyn Uhrain | 2012-06-01 | 1 | -0/+9 |
* | Don't use the implicit int rule for error recovery in C++. Instead, try to | Richard Smith | 2012-05-15 | 1 | -0/+7 |
* | Remove more redundant lookups. Add a new "all_lookups_iterator" which provides | Nick Lewycky | 2012-04-03 | 1 | -0/+7 |
* | Fix typo correction of template arguments to once again allow type names. | Kaelyn Uhrain | 2012-02-22 | 1 | -0/+16 |
* | Avoid infinite mutual recursion in DiagnoseInvalidRedeclaration. | Kaelyn Uhrain | 2012-02-16 | 1 | -0/+10 |
* | Allow typo correction to be disabled in BuildOverloadedCallExpr variant. | Kaelyn Uhrain | 2012-01-25 | 1 | -0/+8 |
* | Avoid correcting unknown identifiers to types where types aren't allowed. | Kaelyn Uhrain | 2012-01-25 | 1 | -0/+12 |
* | Add custom callback object for typo correction in BuildRecoveryCallExpr. | Kaelyn Uhrain | 2012-01-25 | 1 | -0/+24 |
* | In CorrectTypo, use the cached correction as a starting point instead. | Kaelyn Uhrain | 2012-01-23 | 1 | -2/+17 |
* | Convert SemaDecl.cpp to pass callback objects to CorrectTypo. | Kaelyn Uhrain | 2012-01-18 | 1 | -2/+20 |
* | Convert SemaTemplate*.cpp to pass a callback object to CorrectTypo. | Kaelyn Uhrain | 2012-01-13 | 1 | -1/+10 |
* | Convert SemaExprMember.cpp to pass a callback object to CorrectTypo, | Kaelyn Uhrain | 2012-01-13 | 1 | -1/+5 |
* | Convert SemaCXXScopeSpec.cpp to pass a callback object to CorrectTypo, | Kaelyn Uhrain | 2012-01-12 | 1 | -0/+8 |