Age | Commit message (Expand) | Author | Files | Lines |
2016-06-23 | Parser::ParseCXXCondition(): Prune \param in r273548 [-Wdocumentation] | NAKAMURA Takumi | 1 | -3/+0 |
2016-06-23 | Re-commit r273548, reverted in r273589, with a fix to not produce | Richard Smith | 1 | -29/+15 |
2016-06-23 | Revert r273548, "Rearrange condition handling so that semantic checks on a co... | Peter Collingbourne | 1 | -15/+29 |
2016-06-23 | Rearrange condition handling so that semantic checks on a condition variable | Richard Smith | 1 | -29/+15 |
2016-05-31 | [Parser] Fix look ahead after EOF while parsing objc message and lambdas | Bruno Cardoso Lopes | 1 | -1/+4 |
2016-05-09 | Enable support for __float128 in Clang and enable it on pertinent platforms | Nemanja Ivanovic | 1 | -0/+3 |
2016-04-15 | Revert 266186 as it breaks anything that includes type_traits on some platforms | Nemanja Ivanovic | 1 | -3/+0 |
2016-04-13 | Enable support for __float128 in Clang | Nemanja Ivanovic | 1 | -0/+3 |
2016-03-26 | [Cxx1z-constexpr-lambda-P0170R1] Support parsing of constexpr specifier (and... | Faisal Vali | 1 | -4/+61 |
2016-03-21 | [Cxx1z] Implement Lambda Capture of *this by Value as [=,*this] (P0018R3) | Faisal Vali | 1 | -2/+10 |
2016-02-09 | Simplify EnterTokenStream API to make it more robust for memory management | David Blaikie | 1 | -2/+1 |
2016-02-04 | PR23057: fix use-after-free due to local token buffer in ParseCXXAmbiguousPar... | Alexey Bataev | 1 | -1/+19 |
2016-01-15 | OpaquePtr: Use nullptr construction for ParsedType OpaquePtr typedef | David Blaikie | 1 | -17/+14 |
2015-11-20 | [coroutines] Support braced-init-list as operand of co_yield expression. | Richard Smith | 1 | -1/+2 |
2015-11-15 | Fix a layering oddity by passing Sema to DeclSpec::Finish instead of Diagnost... | Craig Topper | 1 | -5/+5 |
2015-11-11 | N3922: direct-list-initialization of an auto-typed variable no longer deduces a | Richard Smith | 1 | -11/+13 |
2015-10-27 | [coroutines] Creation of promise object, lookup of operator co_await, building | Richard Smith | 1 | -1/+1 |
2015-10-22 | [coroutines] Initial stub Sema functionality for handling coroutine await / y... | Richard Smith | 1 | -2/+2 |
2015-10-22 | [coroutines] Add parsing support for co_await expression, co_yield expression, | Richard Smith | 1 | -0/+14 |
2015-10-08 | When pretty-printing a C++11 literal operator, don't insert whitespace between | Richard Smith | 1 | -1/+1 |
2015-08-26 | Modify DeclaratorChuck::getFunction to be passed an Exception Specification S... | Nathan Wilson | 1 | -2/+2 |
2015-07-07 | C++ support for Objective-C lightweight generics. | Douglas Gregor | 1 | -7/+0 |
2015-06-25 | [Parse] Allow 'constexpr' in condition declarations | Meador Inge | 1 | -1/+1 |
2015-06-18 | [clang] Refactoring of conditions so they use isOneOf() instead of multiple i... | Daniel Marjamaki | 1 | -5/+4 |
2015-05-20 | Refactored some common functionality into MaybeParseMicrosoftDeclSpecs; NFC. | Aaron Ballman | 1 | -2/+1 |
2015-03-29 | [Parse] Don't crash on ~A::{ | Benjamin Kramer | 1 | -1/+1 |
2015-03-08 | Make Token a real POD type. | Benjamin Kramer | 1 | -0/+1 |
2015-02-25 | Sema: Parenthesized bound destructor member expressions can be called | David Majnemer | 1 | -8/+5 |
2015-02-16 | For variables with dependent type, don't crash on `var->::new` or `var->__super` | Nico Weber | 1 | -6/+8 |
2015-02-15 | Wrap to 80 columns. No behavior change. | Nico Weber | 1 | -1/+2 |
2015-02-11 | Add a warning for direct-list-initialization of a variable with a deduced type | Richard Smith | 1 | -3/+8 |
2015-02-04 | Parse: Handle __declspec in a lambda definition | David Majnemer | 1 | -0/+5 |
2015-02-02 | Follow-up to r217302: Don't crash on ~A::A in a postfix expr suffix followed ... | Nico Weber | 1 | -0/+2 |
2015-02-02 | Remove a comment I accidentally added in r227581. No behavior change. | Nico Weber | 1 | -2/+1 |
2015-01-30 | Follow-up to r217302 and r227555: Don't crash on inline ~A::A() if A is an int. | Nico Weber | 1 | -1/+7 |
2015-01-30 | Follow-up to r217302: Don't crash on ~A::A() if A is undeclared. | Nico Weber | 1 | -1/+2 |
2015-01-21 | Initial support for C++ parameter completion | Francisco Lopes da Silva | 1 | -2/+13 |
2015-01-15 | Fix crash-on-invalid and name lookup when recovering from ~X::X() typo. | Richard Smith | 1 | -0/+5 |
2015-01-12 | Parse: It's cleaner to handle cxx_defaultarg_end in SkipUntil directly | David Majnemer | 1 | -10/+3 |
2015-01-12 | Parse: Don't parse beyond the end of the synthetic default argument tok | David Majnemer | 1 | -3/+10 |
2015-01-09 | Parse: Don't crash when trailing return type is missing | David Majnemer | 1 | -5/+4 |
2014-12-29 | Fix build breakage | David Majnemer | 1 | -1/+2 |
2014-12-29 | Parse: Recover more gracefully from extra :: tokens before a { | David Majnemer | 1 | -1/+11 |
2014-12-29 | Parse: Ignore '::' in 'struct :: {' | David Majnemer | 1 | -5/+11 |
2014-12-17 | Parse: Consume tokens more carefully in CheckForLParenAfterColonColon | David Majnemer | 1 | -27/+29 |
2014-11-20 | Wire up delayed typo correction to DiagnoseEmptyLookup and set up | Kaelyn Takata | 1 | -18/+33 |
2014-11-13 | PR21437, final part of DR1330: delay-parsing of exception-specifications. This | Richard Smith | 1 | -2/+7 |
2014-10-30 | Remove the last couple uses of the ExprArg(just Expr*) typedef in Parser. | Craig Topper | 1 | -1/+1 |
2014-10-20 | Add RestrictQualifierLoc to DeclaratorChunk::FunctionTypeInfo | Hal Finkel | 1 | -0/+2 |
2014-10-04 | PR20991: ::decltype is not valid. | Richard Smith | 1 | -1/+2 |