Browse Source

Override ToString() in templated declarations to get useful debug output.

pull/1/head
triton 12 years ago
parent
commit
d13bba0f22
  1. 5
      src/Bridge/Template.cs

5
src/Bridge/Template.cs

@ -18,6 +18,11 @@ namespace CppSharp @@ -18,6 +18,11 @@ namespace CppSharp
public Declaration TemplatedDecl;
public List<TemplateParameter> Parameters;
public override string ToString()
{
return TemplatedDecl.ToString();
}
}
public class ClassTemplate : Template

Loading…
Cancel
Save