File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
test/tools/clang_tidy_checks Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -1166,9 +1166,7 @@ typedef __char32_t char32_t;
11661166# define _LIBCPP_NOESCAPE
11671167# endif
11681168
1169- // FIXME: Expand this to [[__gnu__::__nodebug__]] again once the testcase reported in
1170- // https://github.com/llvm/llvm-project/pull/118710 has been analyzed
1171- # define _LIBCPP_NODEBUG
1169+ # define _LIBCPP_NODEBUG [[__gnu__::__nodebug__]]
11721170
11731171# if __has_attribute(__standalone_debug__)
11741172# 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 {
2727 check_factories.registerCheck <libcpp::header_exportable_declarations>(" libcpp-header-exportable-declarations" );
2828 check_factories.registerCheck <libcpp::hide_from_abi>(" libcpp-hide-from-abi" );
2929 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" );
3131 check_factories.registerCheck <libcpp::proper_version_checks>(" libcpp-cpp-version-check" );
3232 check_factories.registerCheck <libcpp::robust_against_adl_check>(" libcpp-robust-against-adl" );
3333 check_factories.registerCheck <libcpp::uglify_attributes>(" libcpp-uglify-attributes" );
You can’t perform that action at this time.
0 commit comments