From a0c366df2bea8c4efcb12ee54ca2edf63f70e815 Mon Sep 17 00:00:00 2001 From: triton Date: Sat, 7 Dec 2013 15:49:21 +0000 Subject: [PATCH] Removed the arguments vector from FunctionType since we use parameters now. --- src/CppParser/AST.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/CppParser/AST.h b/src/CppParser/AST.h index e933c25d..feb8548e 100644 --- a/src/CppParser/AST.h +++ b/src/CppParser/AST.h @@ -85,7 +85,6 @@ struct CS_API FunctionType : public Type { QualifiedType ReturnType; CppSharp::CppParser::AST::CallingConvention CallingConvention; - VECTOR(QualifiedType, Arguments) VECTOR(Parameter*, Parameters) };