r201858 - Internal naming convention consistency change.
Aaron Ballman
aaron at aaronballman.com
Fri Feb 21 06:37:41 PST 2014
Author: aaronballman
Date: Fri Feb 21 08:37:41 2014
New Revision: 201858
URL: http://llvm.org/viewvc/llvm-project?rev=201858&view=rev
Log:
Internal naming convention consistency change.
Modified:
cfe/trunk/include/clang/Basic/AttrDocs.td
Modified: cfe/trunk/include/clang/Basic/AttrDocs.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/AttrDocs.td?rev=201858&r1=201857&r2=201858&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/AttrDocs.td (original)
+++ cfe/trunk/include/clang/Basic/AttrDocs.td Fri Feb 21 08:37:41 2014
@@ -604,7 +604,7 @@ to avoid false positives in other places
}];
}
-def TypeSafetyCat : DocumentationCategory<"Type Safety Checking"> {
+def DocCatTypeSafety : DocumentationCategory<"Type Safety Checking"> {
let Content = [{
Clang supports additional attributes to enable checking type safety properties
that can't be enforced by the C type system. Use cases include:
@@ -639,7 +639,7 @@ example:
}
def ArgumentWithTypeTagDocs : Documentation {
- let Category = TypeSafetyCat;
+ let Category = DocCatTypeSafety;
let Heading = "argument_with_type_tag";
let Content = [{
Use ``__attribute__((argument_with_type_tag(arg_kind, arg_idx,
@@ -661,7 +661,7 @@ For example:
}
def PointerWithTypeTagDocs : Documentation {
- let Category = TypeSafetyCat;
+ let Category = DocCatTypeSafety;
let Heading = "pointer_with_type_tag";
let Content = [{
Use ``__attribute__((pointer_with_type_tag(ptr_kind, ptr_idx, type_tag_idx)))``
@@ -678,7 +678,7 @@ For example:
}
def TypeTagForDatatypeDocs : Documentation {
- let Category = TypeSafetyCat;
+ let Category = DocCatTypeSafety;
let Content = [{
Clang supports annotating type tags of two forms.
More information about the cfe-commits
mailing list