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 /lib/AST/Comment.cpp | |
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 'lib/AST/Comment.cpp')
-rw-r--r-- | lib/AST/Comment.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/AST/Comment.cpp b/lib/AST/Comment.cpp index de569d5276..8a711f0c1f 100644 --- a/lib/AST/Comment.cpp +++ b/lib/AST/Comment.cpp @@ -251,6 +251,9 @@ void DeclInfo::fill() { TemplateParameters = TAT->getTemplateParameters(); break; } + case Decl::Enum: + Kind = EnumKind; + break; } IsFilled = true; |