1. 976e0c0 A bit of AST matcher cleanup, NFC. by Alexander Kornienko · 7 years ago
  2. 6e39e68 [clang-tidy] Move checks from misc- to performance- by Alexander Kornienko · 8 years ago[Renamed (98%) from clang-tools-extra/clang-tidy/misc/MoveConstructorInitCheck.cpp]
  3. b1c7432 [clang-tidy] Unify the way IncludeStyle and HeaderFileExtesions options are used by Alexander Kornienko · 8 years ago
  4. bb64200 [clang-tidy] Supresses misc-move-constructor-init warning for const fields. by Alexander Kornienko · 9 years ago
  5. 79578cc [clang-tidy] Remove duplicated check from move-constructor-init by Malcolm Parsons · 9 years ago
  6. 7c7ea7d [clang-tools-extra] Format sources with clang-format. NFC. by Mandeep Singh Grang · 9 years ago
  7. 11cea45 [clang-tidy] remove trailing whitespaces and retab by Kirill Bobyrev · 9 years ago
  8. 5d08bb7 [clang-tidy] Switch to a more common way of customizing check behavior. by Alexander Kornienko · 9 years ago
  9. 99a0ddd [clang-tidy] MoveConstructorInitCheck - Add parameter name to check message. by Felix Berger · 9 years ago
  10. 2a4c00f [clang-tidy] Cleanup namespace in utils folder. by Etienne Bergeron · 9 years ago
  11. 456177b [clang-tidy] Cleaning namespaces to be more consistant across checkers. by Etienne Bergeron · 9 years ago
  12. c00ad6c Disable part of the misc-move-constructor-init checker when the check is enabled through cert-oop11-cpp. The CERT guideline does not cover moveable parameters as part of the OOP11-CPP recommendation, just copy construction from move constructors. by Aaron Ballman · 10 years ago
  13. fc4e042 Improved the misc-move-constructor-init check to identify arguments that are passed by value but copy assigned to class data members when the non-deleted move constructor is a better fit. by Aaron Ballman · 10 years ago
  14. b9ea09c Refactors AST matching code to use the new AST matcher names. This patch correlates to r247885 which performs the AST matcher rename in Clang. by Aaron Ballman · 10 years ago
  15. bf89109 Using an early return as it is more clear; NFC. by Aaron Ballman · 10 years ago
  16. 327e97b Disable clang-tidy misc checkers when not compiling in C++ mode. Many of the checkers do not require additional testing as the tests will not compile for other languages or modes, or the checkers would never match a valid construct. by Aaron Ballman · 10 years ago
  17. 9392ced Add a new clang-tidy check (misc-move-constructor-init) that diagnoses move constructor initializations that call copy constructors instead of move constructors. by Aaron Ballman · 10 years ago