diff options
author | Alexander Kornienko <alexfh@google.com> | 2015-05-27 14:24:11 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2015-05-27 14:24:11 +0000 |
commit | 7ed89bcd3bfc772bc071f7bb7964242ba34de5b2 (patch) | |
tree | fe203b23419714b8cae6576c18e92b00a4cf4019 /clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp | |
parent | 888830adfe82f0ddb2704573cb575bd881748901 (diff) | |
download | bcm5719-llvm-7ed89bcd3bfc772bc071f7bb7964242ba34de5b2.tar.gz bcm5719-llvm-7ed89bcd3bfc772bc071f7bb7964242ba34de5b2.zip |
[clang-tidy] Renamed misc-noexcept-move-ctors to misc-noexcept-move-constructor
llvm-svn: 238326
Diffstat (limited to 'clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp')
-rw-r--r-- | clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp b/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp index 36e6d401a61..21248d5ab09 100644 --- a/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp +++ b/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp @@ -16,7 +16,7 @@ #include "BoolPointerImplicitConversionCheck.h" #include "InaccurateEraseCheck.h" #include "InefficientAlgorithmCheck.h" -#include "NoexceptMoveCtorsCheck.h" +#include "NoexceptMoveConstructorCheck.h" #include "StaticAssertCheck.h" #include "SwappedArgumentsCheck.h" #include "UndelegatedConstructor.h" @@ -42,8 +42,8 @@ public: "misc-inaccurate-erase"); CheckFactories.registerCheck<InefficientAlgorithmCheck>( "misc-inefficient-algorithm"); - CheckFactories.registerCheck<NoexceptMoveCtorsCheck>( - "misc-noexcept-move-ctors"); + CheckFactories.registerCheck<NoexceptMoveConstructorCheck>( + "misc-noexcept-move-constructor"); CheckFactories.registerCheck<StaticAssertCheck>( "misc-static-assert"); CheckFactories.registerCheck<SwappedArgumentsCheck>( |