Skip to content

Commit 42cd114

Browse files
committed
Remove qualify_declval clang-tidy check
1 parent 80baffc commit 42cd114

File tree

5 files changed

+1
-53
lines changed

5 files changed

+1
-53
lines changed

libcxx/docs/CodingGuidelines.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Function overloading also applies to operators. Using ``&user_object`` may call
3636
...
3737
}
3838
39-
This is mostly enforced by the clang-tidy checks ``libcpp-robust-against-adl`` and ``libcpp-qualify-declval``.
39+
This is mostly enforced by the clang-tidy check ``libcpp-robust-against-adl``.
4040

4141
Avoid including public headers
4242
==============================

libcxx/test/tools/clang_tidy_checks/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ set(SOURCES
9494
internal_ftm_use.cpp
9595
nodebug_on_aliases.cpp
9696
proper_version_checks.cpp
97-
qualify_declval.cpp
9897
robust_against_adl.cpp
9998
uglify_attributes.cpp
10099

libcxx/test/tools/clang_tidy_checks/libcpp_module.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
#include "internal_ftm_use.hpp"
1616
#include "nodebug_on_aliases.hpp"
1717
#include "proper_version_checks.hpp"
18-
#include "qualify_declval.hpp"
1918
#include "robust_against_adl.hpp"
2019
#include "uglify_attributes.hpp"
2120

@@ -31,7 +30,6 @@ class LibcxxTestModule : public clang::tidy::ClangTidyModule {
3130
check_factories.registerCheck<libcpp::proper_version_checks>("libcpp-cpp-version-check");
3231
check_factories.registerCheck<libcpp::robust_against_adl_check>("libcpp-robust-against-adl");
3332
check_factories.registerCheck<libcpp::uglify_attributes>("libcpp-uglify-attributes");
34-
check_factories.registerCheck<libcpp::qualify_declval>("libcpp-qualify-declval");
3533
}
3634
};
3735
} // namespace

libcxx/test/tools/clang_tidy_checks/qualify_declval.cpp

Lines changed: 0 additions & 31 deletions
This file was deleted.

libcxx/test/tools/clang_tidy_checks/qualify_declval.hpp

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)