| Commit message (Expand) | Author | Age | Files | Lines |
* | [CodeCompletion] Avoid spurious signature help for init-list args | Sam McCall | 2021-03-16 | 1 | -1/+1 |
* | [CodeCompletion] Don't track preferred types if code completion is disabled. | Sam McCall | 2021-03-16 | 1 | -3/+0 |
* | [CodeComplete] Guess type for designated initializers | Sam McCall | 2021-02-04 | 1 | -10/+19 |
* | [clang][CodeComplete] Support for designated initializers | Kadir Cetinkaya | 2020-01-28 | 1 | -4/+21 |
* | [c++20] Add support for designated direct-list-initialization syntax. | Richard Smith | 2019-08-31 | 1 | -0/+25 |
* | PR42587: diagnose unexpanded uses of a pack parameter of a generic | Richard Smith | 2019-08-26 | 1 | -0/+1 |
* | [Parser] Lambda capture lists can start with '*' | Erik Pilkington | 2019-07-30 | 1 | -0/+1 |
* | Rearrange and clean up how we disambiguate lambda-introducers from ObjC | Richard Smith | 2019-05-20 | 1 | -11/+20 |
* | Update the file headers across all of the LLVM projects in the monorepo | Chandler Carruth | 2019-01-19 | 1 | -4/+3 |
* | NFC: Remove the ObjC1/ObjC2 distinction from clang (and related projects) | Erik Pilkington | 2018-10-30 | 1 | -3/+3 |
* | Remove trailing space | Fangrui Song | 2018-07-30 | 1 | -25/+25 |
* | Added LLVM_FALLTHROUGH to address warning: this statement may fall through. NFC. | Galina Kistanova | 2017-06-01 | 1 | -1/+2 |
* | Publish RAIIObjectsForParser.h for external usage. | Vassil Vassilev | 2017-03-23 | 1 | -1/+1 |
* | PR23135: Don't instantiate constexpr functions referenced in unevaluated oper... | Richard Smith | 2017-01-07 | 1 | -0/+4 |
* | [NFC] Header cleanup | Mehdi Amini | 2016-07-18 | 1 | -2/+1 |
* | OpaquePtr: Use nullptr construction for ParsedType OpaquePtr typedef | David Blaikie | 2016-01-15 | 1 | -12/+6 |
* | Silence a -Wunused-variable warning; NFC. | Aaron Ballman | 2015-07-07 | 1 | -5/+3 |
* | C++ support for Objective-C lightweight generics. | Douglas Gregor | 2015-07-07 | 1 | -1/+4 |
* | Substitute type arguments into uses of Objective-C interface members. | Douglas Gregor | 2015-07-07 | 1 | -6/+19 |
* | Remove many superfluous SmallString::str() calls. | Yaron Keren | 2015-03-18 | 1 | -1/+1 |
* | Enable ActOnIdExpression to use delayed typo correction for non-C++ code | Kaelyn Takata | 2014-11-21 | 1 | -2/+4 |
* | Refactoring. Remove release and take methods from ActionResult. Rename takeAs... | Nikola Smiljanic | 2014-05-29 | 1 | -6/+6 |
* | [C++11] Use 'nullptr'. Parser edition. | Craig Topper | 2014-05-21 | 1 | -4/+4 |
* | PR19339: Disambiguate lambdas with init-captures from designated initializers | Richard Smith | 2014-04-13 | 1 | -37/+21 |
* | Remove dead return in Parser::MayBeDesignationStart(). | Ted Kremenek | 2014-03-06 | 1 | -2/+0 |
* | Support and use token kinds as diagnostic arguments | Alp Toker | 2013-12-24 | 1 | -1/+1 |
* | Generate a marker token when entering or leaving a submodule when building a | Richard Smith | 2013-11-23 | 1 | -1/+1 |
* | Replaced bool parameters in SkipUntil function with single bit-based parameter. | Alexey Bataev | 2013-11-18 | 1 | -5/+5 |
* | Replace 'MultiExprArg()' with 'None' | Dmitri Gribenko | 2013-05-05 | 1 | -1/+1 |
* | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith | 2013-01-02 | 1 | -1/+1 |
* | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 2012-12-04 | 1 | -1/+1 |
* | Now that ASTMultiPtr is nothing more than a array reference, make it a Mutabl... | Benjamin Kramer | 2012-08-23 | 1 | -2/+1 |
* | Remove ASTOwningVector, it doesn't own anything and provides no value over Sm... | Benjamin Kramer | 2012-08-23 | 1 | -1/+1 |
* | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer | 2012-08-23 | 1 | -3/+3 |
* | Disambiguation of '[[': | Richard Smith | 2012-04-10 | 1 | -0/+5 |
* | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -6/+6 |
* | De-nest tentative parsing to disambiguate lambdas from designators; no | Douglas Gregor | 2012-02-17 | 1 | -42/+45 |
* | Disambiguate between C++11 lambda expressions and C99 array | Douglas Gregor | 2012-02-17 | 1 | -9/+80 |
* | Basic: import SmallString<> into clang namespace | Dylan Noblesmith | 2012-02-05 | 1 | -1/+1 |
* | Implement the Microsoft __if_exists/if_not_exists extension in initializer-list. | Francois Pichet | 2011-12-12 | 1 | -0/+74 |
* | Introduce BalancedDelimiterTracker, to better track open/close | Douglas Gregor | 2011-10-12 | 1 | -8/+15 |
* | Improve caret location for the GNU old-style field designator warning, from D... | Douglas Gregor | 2011-08-27 | 1 | -1/+1 |
* | fix a bunch of comment typos found by codespell. Patch by | Chris Lattner | 2011-04-15 | 1 | -1/+1 |
* | Implement support for pack expansions in initializer lists and | Douglas Gregor | 2011-01-03 | 1 | -2/+5 |
* | Implement bracket insertion for Objective-C instance message sends as | Douglas Gregor | 2010-09-15 | 1 | -1/+7 |
* | One who seeks knowledge learns something new every day. | John McCall | 2010-08-26 | 1 | -6/+6 |
* | OwningExprResult -> ExprResult. This patch brought to you by | John McCall | 2010-08-24 | 1 | -6/+6 |
* | Abstract out passing around types and kill off ActionBase. | John McCall | 2010-08-24 | 1 | -5/+7 |
* | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall | 2010-08-23 | 1 | -5/+5 |
* | Sundry incremental steps towards killing off Action. | John McCall | 2010-08-23 | 1 | -4/+4 |