From 97492c30a2cf1d395352fbf483b4f4904c0f13cc Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Fri, 21 Feb 2014 14:37:41 +0000 Subject: [PATCH] Internal naming convention consistency change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201858 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Basic/AttrDocs.td | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/clang/Basic/AttrDocs.td b/include/clang/Basic/AttrDocs.td index bb18944c05..a2476e43ac 100644 --- a/include/clang/Basic/AttrDocs.td +++ b/include/clang/Basic/AttrDocs.td @@ -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. -- 2.40.0