Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [clang-tidy] Refactor: Move misc clang-tidy checks to namespace ↵ | Alexander Kornienko | 2015-03-02 | 1 | -0/+2 |
| | | | | | | | | | | | | | clang::tidy::misc clang-tidy checks are organized into modules. This refactoring moves the misc module checks into the namespace clang::tidy::misc http://reviews.llvm.org/D7996 Patch by Richard Thomson! llvm-svn: 230950 | ||||
* | [clang-tidy] Add a checker for swapped arguments. | Benjamin Kramer | 2014-07-14 | 1 | -0/+125 |
This looks for swapped arguments by looking at implicit conversions of arguments void Foo(int, double); Foo(1.0, 3); // Most likely a bug llvm-svn: 212942 |