summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/clang-tidy/misc/SwappedArgumentsCheck.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [clang-tidy] Refactor: Move misc clang-tidy checks to namespace ↵Alexander Kornienko2015-03-021-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 Kramer2014-07-141-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
OpenPOWER on IntegriCloud