Browse Source

Ignore namespace alias when parsing declarations.

pull/661/head
Joao Matos 9 years ago
parent
commit
d6b21efe59
  1. 2
      src/CppParser/Parser.cpp

2
src/CppParser/Parser.cpp

@ -3306,6 +3306,8 @@ Declaration* Parser::WalkDeclaration(const clang::Decl* D, @@ -3306,6 +3306,8 @@ Declaration* Parser::WalkDeclaration(const clang::Decl* D,
case Decl::UnresolvedUsingValue:
case Decl::IndirectField:
case Decl::StaticAssert:
case Decl::NamespaceAlias:
break;
default:
{
Debug("Unhandled declaration kind: %s\n", D->getDeclKindName());

Loading…
Cancel
Save