Browse Source

Fixed bug caused by typo in the new parser.

pull/123/head
triton 12 years ago
parent
commit
6b6d18e5a6
  1. 2
      src/CppParser/Parser.cpp

2
src/CppParser/Parser.cpp

@ -1531,7 +1531,7 @@ void Parser::WalkFunction(clang::FunctionDecl* FD, Function* F, @@ -1531,7 +1531,7 @@ void Parser::WalkFunction(clang::FunctionDecl* FD, Function* F,
F->IsInline = FD->isInlined();
F->IsDependent = FD->isDependentContext();
F->IsPure = FD->isPure();
F->IsPure = FD->isDeleted();
F->IsDeleted = FD->isDeleted();
auto CC = FT->getCallConv();
F->CallingConvention = ConvertCallConv(CC);

Loading…
Cancel
Save