Skip to content

Commit 0268083

Browse files
committed
Revert r360345 and r360346, as they are not passing the testbots.
http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-ubuntu-fast/builds/48063/steps/test/logs/stdio llvm-svn: 360348
1 parent 411488b commit 0268083

File tree

8 files changed

+0
-1183
lines changed

8 files changed

+0
-1183
lines changed

clang-tools-extra/clang-tidy/modernize/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ add_clang_library(clangTidyModernizeModule
3030
UseNoexceptCheck.cpp
3131
UseNullptrCheck.cpp
3232
UseOverrideCheck.cpp
33-
UseTrailingReturnTypeCheck.cpp
3433
UseTransparentFunctorsCheck.cpp
3534
UseUncaughtExceptionsCheck.cpp
3635
UseUsingCheck.cpp

clang-tools-extra/clang-tidy/modernize/ModernizeTidyModule.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
#include "UseNoexceptCheck.h"
3636
#include "UseNullptrCheck.h"
3737
#include "UseOverrideCheck.h"
38-
#include "UseTrailingReturnTypeCheck.h"
3938
#include "UseTransparentFunctorsCheck.h"
4039
#include "UseUncaughtExceptionsCheck.h"
4140
#include "UseUsingCheck.h"
@@ -88,8 +87,6 @@ class ModernizeModule : public ClangTidyModule {
8887
CheckFactories.registerCheck<UseNoexceptCheck>("modernize-use-noexcept");
8988
CheckFactories.registerCheck<UseNullptrCheck>("modernize-use-nullptr");
9089
CheckFactories.registerCheck<UseOverrideCheck>("modernize-use-override");
91-
CheckFactories.registerCheck<UseTrailingReturnTypeCheck>(
92-
"modernize-use-trailing-return-type");
9390
CheckFactories.registerCheck<UseTransparentFunctorsCheck>(
9491
"modernize-use-transparent-functors");
9592
CheckFactories.registerCheck<UseUncaughtExceptionsCheck>(

0 commit comments

Comments
 (0)