diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-08-07 18:59:04 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-08-07 18:59:04 +0000 |
commit | cff339a60a571a606a7510548f661dc6a719368d (patch) | |
tree | 3abed613ae0b8025332a5c40918ebb696aa4695a /include/clang/AST/Comment.h | |
parent | d43e114291eed272f8d7b735d3d1c4ca4cd04986 (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.h | 5 |
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. |