File tree 2 files changed +4
-2
lines changed
test/tools/clang_tidy_checks
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1170,7 +1170,9 @@ typedef __char32_t char32_t;
1170
1170
# define _LIBCPP_NOESCAPE
1171
1171
# endif
1172
1172
1173
- # define _LIBCPP_NODEBUG [[__gnu__::__nodebug__]]
1173
+ // FIXME: Expand this to [[__gnu__::__nodebug__]] again once the testcase reported in
1174
+ // https://github.com/llvm/llvm-project/pull/118710 has been analyzed
1175
+ # define _LIBCPP_NODEBUG
1174
1176
1175
1177
# if __has_attribute(__standalone_debug__)
1176
1178
# define _LIBCPP_STANDALONE_DEBUG __attribute__ ((__standalone_debug__))
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class LibcxxTestModule : public clang::tidy::ClangTidyModule {
27
27
check_factories.registerCheck <libcpp::header_exportable_declarations>(" libcpp-header-exportable-declarations" );
28
28
check_factories.registerCheck <libcpp::hide_from_abi>(" libcpp-hide-from-abi" );
29
29
check_factories.registerCheck <libcpp::internal_ftm_use>(" libcpp-internal-ftms" );
30
- check_factories.registerCheck <libcpp::nodebug_on_aliases>(" libcpp-nodebug-on-aliases" );
30
+ // check_factories.registerCheck<libcpp::nodebug_on_aliases>("libcpp-nodebug-on-aliases");
31
31
check_factories.registerCheck <libcpp::proper_version_checks>(" libcpp-cpp-version-check" );
32
32
check_factories.registerCheck <libcpp::robust_against_adl_check>(" libcpp-robust-against-adl" );
33
33
check_factories.registerCheck <libcpp::uglify_attributes>(" libcpp-uglify-attributes" );
You can’t perform that action at this time.
0 commit comments