Browse Source

Added convenience ctor to TypedefType.

pull/696/head
Joao Matos 9 years ago
parent
commit
71c6e72959
  1. 5
      src/AST/Type.cs

5
src/AST/Type.cs

@ -405,6 +405,11 @@ namespace CppSharp.AST @@ -405,6 +405,11 @@ namespace CppSharp.AST
{
}
public TypedefType(TypedefNameDecl decl)
{
Declaration = decl;
}
public TypedefType(TypedefType type)
: base(type)
{

Loading…
Cancel
Save