Support '#pragma clang __debug dump' within C++ classes.

llvm-svn: 293355
This commit is contained in:
Richard Smith 2017-01-28 01:20:57 +00:00
parent b55f75826a
commit b256d30004
1 changed files with 3 additions and 0 deletions

View File

@ -2988,6 +2988,9 @@ Parser::DeclGroupPtrTy Parser::ParseCXXClassMemberDeclarationWithPragmas(
case tok::annot_pragma_ms_vtordisp:
HandlePragmaMSVtorDisp();
return nullptr;
case tok::annot_pragma_dump:
HandlePragmaDump();
return nullptr;
case tok::kw_namespace:
// If we see a namespace here, a close brace was missing somewhere.