summaryrefslogtreecommitdiffstats
path: root/lib/Parse/ParseCXXInlineMethods.cpp
Commit message (Expand)AuthorAgeFilesLines
* Merging r310776:Hans Wennborg2017-08-171-18/+5
* fix typos in comments; NFCHiroshi Inoue2017-07-131-1/+1
* Fix the location of "missing ';'" suggestions after annotation tokens.Richard Smith2017-05-181-14/+1
* [NFC, Scoped Enum] Convert Sema::ExpressionEvaluationContext into a scoped EnumFaisal Vali2017-04-011-3/+3
* Publish RAIIObjectsForParser.h for external usage.Vassil Vassilev2017-03-231-1/+1
* Use unique_ptr for cached tokens for default arguments in C++.Malcolm Parsons2016-11-171-4/+2
* Fix heuristics skipping invalid ctor-initializers with C++11Olivier Goffart2016-11-031-9/+37
* Fix a few issues while skipping function bodiesOlivier Goffart2016-06-161-0/+6
* [-fms-extensions] Don't crash on explicit class-scope specializations & defau...David Majnemer2016-06-101-1/+1
* For MS ABI, emit dllexport friend functions defined inline in classStephan Bergmann2016-03-301-2/+4
* Revert "For MS ABI, emit dllexport friend functions defined inline in class"Reid Kleckner2016-03-171-4/+2
* For MS ABI, emit dllexport friend functions defined inline in classReid Kleckner2016-03-171-2/+4
* [Sema] PR25181 Fix crash when method declaration with throw spec fails to par...Reid Kleckner2016-02-191-1/+2
* Simplify EnterTokenStream API to make it more robust for memory managementDavid Blaikie2016-02-091-7/+7
* Merge some similar diagnostics using %select.Craig Topper2015-11-141-4/+6
* Roll-back r250822.Angel Garcia Gomez2015-10-201-1/+1
* Apply modernize-use-default to clang.Angel Garcia Gomez2015-10-201-1/+1
* Rework parsing of pure-specifiers. Perform the grammar matching andRichard Smith2015-06-301-7/+3
* [clang] Refactoring of conditions so they use isOneOf() instead of multiple i...Daniel Marjamaki2015-06-181-5/+4
* Cleanup: no need to pass DefinitionKind into ParseCXXInlineMethodDefEli Bendersky2015-03-231-5/+3
* Record correct source range for defaulted/deleted members.Eli Bendersky2015-03-231-0/+7
* Parse: Don't assume tokens have a lengthDavid Majnemer2015-03-191-7/+3
* FIX PR 18432, default args, friends & late-parsed members.Nathan Sidwell2015-02-191-1/+12
* Code cleanupNathan Sidwell2015-01-301-10/+8
* Parse: use the EOF token method to lex inline method bodiesDavid Majnemer2015-01-131-20/+23
* Parse: Further simplify ParseLexedMethodDeclarationDavid Majnemer2015-01-131-30/+33
* Parse: Get rid of cxx_exceptspec_end, use EOF insteadDavid Majnemer2015-01-121-2/+5
* Parse: Just a small tidy-up in ParseLexedMethodDeclarationDavid Majnemer2015-01-121-5/+7
* Parse: Get rid of tok::cxx_defaultarg_end, use EOF insteadDavid Majnemer2015-01-121-3/+7
* Parse: It's cleaner to handle cxx_defaultarg_end in SkipUntil directlyDavid Majnemer2015-01-121-0/+1
* Don't crash on surprising tokens in default parameter template lists.Nico Weber2014-12-281-1/+1
* Fix layering violation, Lex shouldn't know about DeclDavid Majnemer2014-12-191-2/+2
* Parse: Don't parse after the eof has been consumedDavid Majnemer2014-12-181-1/+4
* PR21565: Further refine the conditions for enabling eager parsing ofRichard Smith2014-11-201-7/+6
* Wire up delayed typo correction to DiagnoseEmptyLookup and set upKaelyn Takata2014-11-201-0/+1
* PR21437, final part of DR1330: delay-parsing of exception-specifications. ThisRichard Smith2014-11-131-0/+70
* PR20760: Don't assert (and produce better diagnostics) if a default initializerRichard Smith2014-08-271-18/+29
* Fix default argument comma disambiguation bug following the 'template' keyword.Richard Smith2014-07-271-0/+1
* Avoid crash if default argument parsed with errors.Serge Pavlov2014-07-221-1/+2
* Refactoring. Remove release and take methods from ActionResult. Rename takeAs...Nikola Smiljanic2014-05-291-2/+2
* Emit used/dllexport inline method definitions in nested classes (PR19743, PR1...Hans Wennborg2014-05-231-0/+3
* [C++11] Use 'nullptr'. Parser edition.Craig Topper2014-05-211-5/+6
* Replace a fake enum class with the real thing.Richard Smith2014-05-161-6/+6
* Wrap to 80 columns. No behavior change.Nico Weber2014-05-101-8/+12
* Rename getResultType() on function and method declarations to getReturnType()Alp Toker2014-01-251-1/+1
* Introduce and use Decl::getAsFunction() to simplify templated function checksAlp Toker2014-01-221-13/+7
* PR18477: Create a function scope representing the constructor call whenRichard Smith2014-01-171-1/+4
* ExpectAndConsume: Diagnose errors automaticallyAlp Toker2014-01-011-3/+3
* Support and use token kinds as diagnostic argumentsAlp Toker2013-12-241-13/+15
* Refactor and micro-optimize ConsumeToken()Alp Toker2013-12-171-18/+10