llvm-project/clang-tools-extra/clang-tidy/misc
Benjamin Kramer 082bf7f637 [clang-tidy] Add a checker for swapped arguments.
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
2014-07-14 14:24:30 +00:00
..
ArgumentCommentCheck.cpp clang-tidy/ArgumentCommentCheck: Initializer list in non-static members is unavailable on msc17. 2014-03-18 07:22:43 +00:00
ArgumentCommentCheck.h clang-tidy/ArgumentCommentCheck: Initializer list in non-static members is unavailable on msc17. 2014-03-18 07:22:43 +00:00
BoolPointerImplicitConversion.cpp [clang-tidy] Add a checker for implicit bool conversion of a bool*. 2014-07-11 08:08:47 +00:00
BoolPointerImplicitConversion.h [clang-tidy] Add a checker for implicit bool conversion of a bool*. 2014-07-11 08:08:47 +00:00
CMakeLists.txt [clang-tidy] Add a checker for swapped arguments. 2014-07-14 14:24:30 +00:00
Makefile
MiscTidyModule.cpp [clang-tidy] Add a checker for swapped arguments. 2014-07-14 14:24:30 +00:00
RedundantSmartptrGet.cpp Do not touch get() calls on 'this' object. 2014-04-29 13:41:23 +00:00
RedundantSmartptrGet.h Add clang-tidy check to remove redundant .get() calls on smart pointers. 2014-03-27 17:42:26 +00:00
SwappedArgumentsCheck.cpp [clang-tidy] Add a checker for swapped arguments. 2014-07-14 14:24:30 +00:00
SwappedArgumentsCheck.h [clang-tidy] Add a checker for swapped arguments. 2014-07-14 14:24:30 +00:00
UseOverride.cpp clang-tidy: [misc-use-override] Correctly handle defaulted destructors. 2014-06-20 09:12:46 +00:00
UseOverride.h Initial version of clang-tidy check to use override instead of virual. 2014-05-16 09:30:09 +00:00