llvm-project/clang-tools-extra/clang-tidy/modernize
Aaron Ballman 8b0583ef1b Disable several more clang-tidy modernize checkers when not compiling in C++ mode. Loop conversion would make recommendations for C code, so added a test to ensure that does not happen. The pass by value, use auto and replace auto_ptr checkers would not make recommendations for C code, and are disabled for performance reasons, but do not require an extra test.
llvm-svn: 246310
2015-08-28 17:58:10 +00:00
..
CMakeLists.txt Add replace-auto_ptr check. 2015-08-25 13:03:43 +00:00
LoopConvertCheck.cpp Disable several more clang-tidy modernize checkers when not compiling in C++ mode. Loop conversion would make recommendations for C code, so added a test to ensure that does not happen. The pass by value, use auto and replace auto_ptr checkers would not make recommendations for C code, and are disabled for performance reasons, but do not require an extra test. 2015-08-28 17:58:10 +00:00
LoopConvertCheck.h [clang-tidy] Add loop-convert check to clang-tidy. 2015-08-19 09:11:46 +00:00
LoopConvertUtils.cpp Fix another LoopConvert fail. 2015-08-26 17:08:24 +00:00
LoopConvertUtils.h [clang-tidy] Add loop-convert check to clang-tidy. 2015-08-19 09:11:46 +00:00
Makefile
ModernizeTidyModule.cpp Add replace-auto_ptr check. 2015-08-25 13:03:43 +00:00
PassByValueCheck.cpp Disable several more clang-tidy modernize checkers when not compiling in C++ mode. Loop conversion would make recommendations for C code, so added a test to ensure that does not happen. The pass by value, use auto and replace auto_ptr checkers would not make recommendations for C code, and are disabled for performance reasons, but do not require an extra test. 2015-08-28 17:58:10 +00:00
PassByValueCheck.h
ReplaceAutoPtrCheck.cpp Disable several more clang-tidy modernize checkers when not compiling in C++ mode. Loop conversion would make recommendations for C code, so added a test to ensure that does not happen. The pass by value, use auto and replace auto_ptr checkers would not make recommendations for C code, and are disabled for performance reasons, but do not require an extra test. 2015-08-28 17:58:10 +00:00
ReplaceAutoPtrCheck.h Add replace-auto_ptr check. 2015-08-25 13:03:43 +00:00
UseAutoCheck.cpp Disable several more clang-tidy modernize checkers when not compiling in C++ mode. Loop conversion would make recommendations for C code, so added a test to ensure that does not happen. The pass by value, use auto and replace auto_ptr checkers would not make recommendations for C code, and are disabled for performance reasons, but do not require an extra test. 2015-08-28 17:58:10 +00:00
UseAutoCheck.h [clang-tidy] Migrate UseAuto from clang-modernize to clang-tidy. 2015-08-21 15:08:51 +00:00
UseNullptrCheck.cpp Reapplying r246209, which exposed language options to the checkers. This time disable UseNullptrCheck when not compiling in C++ mode, but still allow in C++11 mode since it's likely the user wishes to modernize their code. 2015-08-28 13:20:46 +00:00
UseNullptrCheck.h [clang-tidy] Fix use-after-free in UseNullptrCheck. 2015-08-19 23:57:34 +00:00