Browse Source

Added a new constructor to TagType that takes a declaration.

pull/1/head
triton 12 years ago
parent
commit
c7cb7f3ac5
  1. 5
      src/Bridge/Type.cs

5
src/Bridge/Type.cs

@ -160,6 +160,11 @@ namespace Cxxi @@ -160,6 +160,11 @@ namespace Cxxi
{
}
public TagType(Declaration decl)
{
Declaration = decl;
}
public Declaration Declaration;
public override T Visit<T>(ITypeVisitor<T> visitor, TypeQualifiers quals)

Loading…
Cancel
Save