From 3f0a188ea67acd41a5b1b80ab78f8517ec978d70 Mon Sep 17 00:00:00 2001 From: marcos henrich Date: Fri, 2 Aug 2013 22:32:36 +0100 Subject: [PATCH] CppTypePrinter now prints parameter declaration type. --- src/Generator/Types/CppTypePrinter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator/Types/CppTypePrinter.cs b/src/Generator/Types/CppTypePrinter.cs index 15a9aed9..22345d8b 100644 --- a/src/Generator/Types/CppTypePrinter.cs +++ b/src/Generator/Types/CppTypePrinter.cs @@ -212,7 +212,7 @@ namespace CppSharp.Types public string VisitParameterDecl(Parameter parameter) { - throw new NotImplementedException(); + return VisitParameter(parameter, hasName: false); } public string VisitTypedefDecl(TypedefDecl typedef)