Browse Source

[ast] Added a constructor taking string to UnsupportedType.

pull/828/head
Joao Matos 8 years ago
parent
commit
a85dcaa533
  1. 5
      src/AST/Type.cs

5
src/AST/Type.cs

@ -1084,6 +1084,11 @@ namespace CppSharp.AST @@ -1084,6 +1084,11 @@ namespace CppSharp.AST
{
}
public UnsupportedType(string description)
{
Description = description;
}
public UnsupportedType(UnsupportedType type)
: base(type)
{

Loading…
Cancel
Save