Browse Source

Removed the arguments vector from FunctionType since we use parameters now.

pull/131/head
triton 12 years ago
parent
commit
a0c366df2b
  1. 1
      src/CppParser/AST.h

1
src/CppParser/AST.h

@ -85,7 +85,6 @@ struct CS_API FunctionType : public Type @@ -85,7 +85,6 @@ struct CS_API FunctionType : public Type
{
QualifiedType ReturnType;
CppSharp::CppParser::AST::CallingConvention CallingConvention;
VECTOR(QualifiedType, Arguments)
VECTOR(Parameter*, Parameters)
};

Loading…
Cancel
Save