aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/CommentCommandTraits.h
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2013-03-08 23:59:23 +0000
committerFariborz Jahanian <fjahanian@apple.com>2013-03-08 23:59:23 +0000
commitb421b56d5a83c5bcae576b714ebd9df7b745368d (patch)
tree97d9f450eed17ed0c8456e1d779bca9b9cb5500b /include/clang/AST/CommentCommandTraits.h
parent0183768813658d419e3124b576744b03ec8e9b55 (diff)
Documentation parsing. Some refactoring and code
improvements per Dmtiri's comments. // rdar://12379114 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176739 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST/CommentCommandTraits.h')
-rw-r--r--include/clang/AST/CommentCommandTraits.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/AST/CommentCommandTraits.h b/include/clang/AST/CommentCommandTraits.h
index 0dfeea0cb9..9eb99d506b 100644
--- a/include/clang/AST/CommentCommandTraits.h
+++ b/include/clang/AST/CommentCommandTraits.h
@@ -106,10 +106,10 @@ struct CommandInfo {
/// \brief True if block command is further describing a container API; such
/// as @coclass, @classdesign, etc.
- unsigned IsContainerDetailCommand : 1;
+ unsigned IsRecordLikeDetailCommand : 1;
/// \brief True if block command is a container API; such as @interface.
- unsigned IsContainerDeclarationCommand : 1;
+ unsigned IsRecordLikeDeclarationCommand : 1;
/// \brief True if this command is unknown. This \c CommandInfo object was
/// created during parsing.