[clang] 7c926fe - Improve attribute documentation for nodebug on typedefs

David Blaikie via cfe-commits cfe-commits at lists.llvm.org
Wed Feb 24 16:26:13 PST 2021


Author: David Blaikie
Date: 2021-02-24T16:25:37-08:00
New Revision: 7c926fee930012f9ec19cdaab23b7e154a3845ba

URL: https://github.com/llvm/llvm-project/commit/7c926fee930012f9ec19cdaab23b7e154a3845ba
DIFF: https://github.com/llvm/llvm-project/commit/7c926fee930012f9ec19cdaab23b7e154a3845ba.diff

LOG: Improve attribute documentation for nodebug on typedefs

(followup to 8472fa6c54c9d044adcd147f6826bccebd730f30 )

Added: 
    

Modified: 
    clang/include/clang/Basic/AttrDocs.td

Removed: 
    


################################################################################
diff  --git a/clang/include/clang/Basic/AttrDocs.td b/clang/include/clang/Basic/AttrDocs.td
index 9de204956190..d7d74bd6eee7 100644
--- a/clang/include/clang/Basic/AttrDocs.td
+++ b/clang/include/clang/Basic/AttrDocs.td
@@ -1048,8 +1048,8 @@ def NoDebugDocs : Documentation {
   let Category = DocCatVariable;
   let Content = [{
 The ``nodebug`` attribute allows you to suppress debugging information for a
-function or method, or for a variable that is not a parameter or a non-static
-data member.
+function or method, for a variable that is not a parameter or a non-static
+data member, or for a typedef or using declaration.
   }];
 }
 


        


More information about the cfe-commits mailing list