diff options
-rw-r--r-- | clang/include/clang/Basic/AttrDocs.td | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/include/clang/Basic/AttrDocs.td b/clang/include/clang/Basic/AttrDocs.td index 9a9c82b7d6d..e0c1de12829 100644 --- a/clang/include/clang/Basic/AttrDocs.td +++ b/clang/include/clang/Basic/AttrDocs.td @@ -657,7 +657,8 @@ def NoDebugDocs : Documentation { 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. +data member. It will also suppress debug information for any code that is +inlined into a ``nodebug`` function or method. }]; } |