aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/Comment.h
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-08-07 18:59:04 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-08-07 18:59:04 +0000
commitcff339a60a571a606a7510548f661dc6a719368d (patch)
tree3abed613ae0b8025332a5c40918ebb696aa4695a /include/clang/AST/Comment.h
parentd43e114291eed272f8d7b735d3d1c4ca4cd04986 (diff)
Comment AST: DeclInfo: add a special kind for enums.
Comment XML: add a root node kind for enums. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161442 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST/Comment.h')
-rw-r--r--include/clang/AST/Comment.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/clang/AST/Comment.h b/include/clang/AST/Comment.h
index 43d14ec238..01aaac3f77 100644
--- a/include/clang/AST/Comment.h
+++ b/include/clang/AST/Comment.h
@@ -962,7 +962,10 @@ struct DeclInfo {
/// A C++ typedef-name (a 'typedef' decl specifier or alias-declaration),
/// see \c TypedefNameDecl.
- TypedefKind
+ TypedefKind,
+
+ /// An enumeration or scoped enumeration.
+ EnumKind
};
/// What kind of template specialization \c ThisDecl is.