summaryrefslogtreecommitdiffstats
path: root/lib/Sema/SemaLookup.cpp
Commit message (Expand)AuthorAgeFilesLines
* Merging r228785:Hans Wennborg2015-02-111-2/+12
* Merging r227278:Hans Wennborg2015-01-281-1/+1
* Add a new flag, -fspell-checking-limit=<number> to control how many times we'...Nick Lewycky2014-12-161-69/+16
* Perform correct lookup when '__super' is used in class with dependent base.Nikola Smiljanic2014-12-011-0/+25
* Correctly set the SourceRange a TypoCorrection will replace.Kaelyn Takata2014-11-201-3/+5
* Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator...David Blaikie2014-11-191-10/+10
* Wrap to 80 columns, no behavior change.Nico Weber2014-11-191-1/+2
* Make LookupResult be copyable to avoid decomposing an existing one andKaelyn Takata2014-11-111-6/+6
* Add a callback for recovering using a typo correction.Kaelyn Takata2014-10-271-5/+9
* Add simple way for a CorrectionCandidateCallback to reject exactKaelyn Takata2014-10-271-47/+50
* Start adding the infrastructure for handling TypoExprs.Kaelyn Takata2014-10-271-104/+213
* Have TypoCorrectionConsumer remember the TypoCorrections it returned.Kaelyn Takata2014-10-271-4/+12
* Pass around CorrectionCandidateCallbacks as unique_ptrs soKaelyn Takata2014-10-271-11/+16
* Move TypoCorrectionConsumer into a header.Kaelyn Takata2014-10-271-151/+2
* Factor code into CXXRecordDecl::getTemplateInstantiationPattern() helperReid Kleckner2014-10-141-15/+2
* -ms-extensions: Allow __super in return stements.Nikola Smiljanic2014-10-041-2/+11
* -ms-extensions: Implement __super scope specifier (PR13236).Nikola Smiljanic2014-09-261-0/+21
* Use llvm::makeArrayRef instead of explicitly calling ArrayRef constructor and...Craig Topper2014-08-301-2/+2
* Factor out exception specification information fromRichard Smith2014-07-311-2/+1
* Add another keyword-selection flag to CorrectionCandidateCallback.Kaelyn Takata2014-07-281-1/+9
* Switching some iterator-based for loops to use range-based for loops. No func...Aaron Ballman2014-07-151-49/+28
* Added the pack_elements range accessor. Refactoring some for loops to use ran...Aaron Ballman2014-07-151-4/+2
* Fix typos.Nikola Smiljanic2014-07-091-1/+1
* Propagate isAddressOfMember into typo correction so that we don't correct &qu...Nick Lewycky2014-06-231-6/+19
* Fix the caller of checkCorrectionVisibility too.Kaelyn Takata2014-06-171-1/+1
* Remove an unused argument from checkCorrectionVisibility.Kaelyn Takata2014-06-171-2/+1
* Fix the VS2012 build.Hans Wennborg2014-06-111-5/+7
* Add some comments to TypoCorrectionConsumer.Kaelyn Takata2014-06-111-26/+49
* Sink SpecifierInfo into the only class that uses it.Kaelyn Takata2014-06-111-18/+13
* Make a couple of helper classes private to TypoCorrectionConsumer.Kaelyn Takata2014-06-111-81/+87
* Clean up the TypoCorrectionConsumer's interface a bit.Kaelyn Takata2014-06-111-37/+26
* Move TypoCorrection filtering into the TypoCorrectionConsumer and make it inc...Kaelyn Takata2014-06-111-257/+253
* Move a few classes to be before TypoCorrectionConsumer.Kaelyn Takata2014-06-111-129/+134
* Remove a redundant conditional when caching typo failures.Kaelyn Takata2014-06-101-6/+5
* [C++11] Use 'nullptr'. Sema edition.Craig Topper2014-05-261-44/+45
* fmodules-search-all: Removed dead code and added some comments.John Thompson2014-05-071-6/+5
* If an instantiation of a template is required to be a complete type, checkRichard Smith2014-05-071-3/+3
* Fix a bunch of mislayered clang/Lex includes from SemaAlp Toker2014-05-031-2/+2
* Quick fix for layering that broke shared library build.John Thompson2014-04-231-27/+7
* Initial implementation of -modules-earch-all option, for searching for symbol...John Thompson2014-04-231-2/+34
* Implement [over.match.oper]p3 properly, by filtering the non-candidates outRichard Smith2014-04-171-84/+6
* PR19452: Implement more of [over.match.oper]p3's restrictions on which non-me...Richard Smith2014-04-171-14/+18
* Fix handling of redeclaration lookup for using declarations, where the priorRichard Smith2014-04-111-3/+6
* Try harder about not suggesting methods as corrections when theyKaelyn Takata2014-04-041-9/+11
* Fix self-referential comment.Richard Smith2014-04-011-2/+1
* Be a bit smarter about what nested name qualifiers to allow whenKaelyn Uhrain2014-03-211-7/+11
* [C++11] Simplify some loops in Sema::CorrectTypo as range-based for loops.Kaelyn Uhrain2014-03-211-24/+14
* [C++11] Replacing DeclContext iterators using_directives_begin() and using_di...Aaron Ballman2014-03-171-9/+7
* [C++11] Replacing Scope iterators using_directives_begin() and using_directiv...Aaron Ballman2014-03-171-4/+2
* [C++11] Replacing Scope iterators decl_begin() and decl_end() with iterator_r...Aaron Ballman2014-03-171-3/+2