diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2013-03-08 23:59:23 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2013-03-08 23:59:23 +0000 |
commit | b421b56d5a83c5bcae576b714ebd9df7b745368d (patch) | |
tree | 97d9f450eed17ed0c8456e1d779bca9b9cb5500b /utils | |
parent | 0183768813658d419e3124b576744b03ec8e9b55 (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 'utils')
-rw-r--r-- | utils/TableGen/ClangCommentCommandInfoEmitter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/ClangCommentCommandInfoEmitter.cpp b/utils/TableGen/ClangCommentCommandInfoEmitter.cpp index f90cef3719..ebb0427d7c 100644 --- a/utils/TableGen/ClangCommentCommandInfoEmitter.cpp +++ b/utils/TableGen/ClangCommentCommandInfoEmitter.cpp @@ -48,8 +48,8 @@ void EmitClangCommentCommandInfo(RecordKeeper &Records, raw_ostream &OS) { << Tag.getValueAsBit("IsVerbatimLineCommand") << ", " << Tag.getValueAsBit("IsDeclarationCommand") << ", " << Tag.getValueAsBit("IsFunctionDeclarationCommand") << ", " - << Tag.getValueAsBit("IsContainerDetailCommand") << ", " - << Tag.getValueAsBit("IsContainerDeclarationCommand") << ", " + << Tag.getValueAsBit("IsRecordLikeDetailCommand") << ", " + << Tag.getValueAsBit("IsRecordLikeDeclarationCommand") << ", " << /* IsUnknownCommand = */ "0" << " }"; if (i + 1 != e) |