https://github.com/mdavis36 created https://github.com/llvm/llvm-project/pull/143839
# Summary This PR resolves issue #143719. - Removes "explcitly" from the documentation on `[[clang::no_specialization]]` to better match behavior of specialization as defined by the C++ standard. >From c1e9c253b863297e5e245ae9a484f4275bb1187d Mon Sep 17 00:00:00 2001 From: mdavis36 <[email protected]> Date: Wed, 11 Jun 2025 22:32:30 -0700 Subject: [PATCH] Remove "explicitly" from ambiguous documentaion on [[clang::no_specialization]]. --- clang/include/clang/Basic/AttrDocs.td | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/include/clang/Basic/AttrDocs.td b/clang/include/clang/Basic/AttrDocs.td index 047f51ffa59ed..508cf6d427a52 100644 --- a/clang/include/clang/Basic/AttrDocs.td +++ b/clang/include/clang/Basic/AttrDocs.td @@ -1216,8 +1216,8 @@ def NoSpecializationsDocs : Documentation { let Category = DocCatDecl; let Content = [{ ``[[clang::no_specializations]]`` can be applied to function, class, or variable -templates which should not be explicitly specialized by users. This is primarily -used to diagnose user specializations of standard library type traits. +templates which should not be specialized by users. This is primarily used to +diagnose user specializations of standard library type traits. }]; } _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
