Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [clangd] Make Tweak::Selection movable. NFC | Sam McCall | 2019-12-16 | 1 | -2/+2 |
| | |||||
* | [clangd] Add RemoveUsingNamespace tweak. | Utkarsh Saxena | 2019-10-16 | 1 | -0/+206 |
Summary: Removes the 'using namespace' under the cursor and qualifies all accesses in the current file. E.g.: using namespace std; vector<int> foo(std::map<int, int>); Would become: std::vector<int> foo(std::map<int, int>); Subscribers: mgorny, ilya-biryukov, MaskRay, jkorous, mgrang, arphaman, kadircet, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D68562 llvm-svn: 374982 |