Browse Source

CppTypePrinter now prints parameter declaration type.

pull/17/head
marcos henrich 13 years ago
parent
commit
3f0a188ea6
  1. 2
      src/Generator/Types/CppTypePrinter.cs

2
src/Generator/Types/CppTypePrinter.cs

@ -212,7 +212,7 @@ namespace CppSharp.Types @@ -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)

Loading…
Cancel
Save