Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [clang-tidy] Now adding correct misc-move-const-arg documentation ;] | Alexander Kornienko | 2016-04-26 | 1 | -73/+0 |
| | | | | | | + brushed the code a bit and renamed the test file to match the check name llvm-svn: 267592 | ||||
* | [clang-tidy] Const std::move() argument ClangTidy check | Alexander Kornienko | 2015-11-25 | 1 | -0/+73 |
ClangTidy check for finding cases when std::move() is called with const or trivially copyable arguments, that doesn't lead to any move or argument but it makes copy. FixIt generates patch for removing call of std::move(). Patch by Vadym Doroshenko! (+ a couple of minor fixes) Differential Revision: http://reviews.llvm.org/D12031 llvm-svn: 254070 |