Browse Source

Ignore TypeAliasTemplate declarations to get rid of some parser warnings.

pull/238/head
triton 11 years ago
parent
commit
dc6d975487
  1. 1
      src/Parser/Parser.cpp

1
src/Parser/Parser.cpp

@ -2415,6 +2415,7 @@ CppSharp::AST::Declaration^ Parser::WalkDeclaration(clang::Decl* D, @@ -2415,6 +2415,7 @@ CppSharp::AST::Declaration^ Parser::WalkDeclaration(clang::Decl* D,
case Decl::UnresolvedUsingValue:
case Decl::IndirectField:
case Decl::StaticAssert:
case Decl::TypeAliasTemplate:
break;
default:
{

Loading…
Cancel
Save