diff options
author | David Majnemer <david.majnemer@gmail.com> | 2014-02-25 08:28:55 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2014-02-25 08:28:55 +0000 |
commit | 037267532fc024259eab0c91fd58c3c2e8985ee4 (patch) | |
tree | 6600bc6ca7453780f875a3b6f51f3982fa352a84 /include/clang/Basic/Attr.td | |
parent | 2012aaa6411189eb07157d215c902a42af221b2e (diff) | |
download | clang-037267532fc024259eab0c91fd58c3c2e8985ee4.tar.gz |
AttributeReference: Document __single_inhertiance, __multiple_inheritance, __virtual_inheritance
Add documentation for these attributes, it includes:
- Motivation for their existence.
- Examples on how to use them.
- Examples on how to misuse them.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@202121 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/Attr.td')
-rw-r--r-- | include/clang/Basic/Attr.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/Attr.td b/include/clang/Basic/Attr.td index 9c28d631d2..2daa8f1763 100644 --- a/include/clang/Basic/Attr.td +++ b/include/clang/Basic/Attr.td @@ -1742,7 +1742,7 @@ def MSInheritance : InheritableAttr { return Inheritance <= Keyword_multiple_inheritance; } }]; - let Documentation = [Undocumented]; + let Documentation = [MSInheritanceDocs]; } def MSVtorDisp : InheritableAttr { |