Browse Source

Stubbed out clang AutoType in the parser to get rid of warnings.

pull/761/head
Joao Matos 9 years ago
parent
commit
70257ab6df
  1. 6
      src/CppParser/Parser.cpp

6
src/CppParser/Parser.cpp

@ -2652,6 +2652,12 @@ Type* Parser::WalkType(clang::QualType QualType, clang::TypeLoc* TL,
Ty = new PackExpansionType(); Ty = new PackExpansionType();
break; break;
} }
case clang::Type::Auto:
{
// TODO: stubbed
auto AT = Type->getAs<clang::AutoType>();
return nullptr;
}
case clang::Type::Decltype: case clang::Type::Decltype:
{ {
auto DT = Type->getAs<clang::DecltypeType>(); auto DT = Type->getAs<clang::DecltypeType>();

Loading…
Cancel
Save