Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [AST] Fix buildbot failure because of raw string inside macro from 367839. | Johan Vikstrom | 2019-08-05 | 1 | -1/+1 |
| | | | | llvm-svn: 367892 | ||||
* | [AST] Fix RecursiveASTVisitorTest multiline string literal. NFC | David Green | 2019-08-05 | 1 | -3/+3 |
| | | | | | | | | Some compiler, notably older gccs (< 8) can have trouble with multiline raw string literals inside macros. This just moves the code outsize the macro, to attempt to appease the bots. llvm-svn: 367885 | ||||
* | [AST] Fix RecursiveASTVisitor visiting implicit constructor initializers. | Johan Vikstrom | 2019-08-05 | 1 | -0/+57 |
Summary: RecursiveASTVisitor was visiting implcit constructor initializers. This caused semantic highlighting in clangd to emit error logs. Fixes this by checking if the constructor is written or if the visitor should visit implicit decls. Reviewers: hokein, ilya-biryukov Subscribers: kadircet, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D65735 llvm-svn: 367839 |