From c7cb7f3ac5610133ab12668e15559e940335e996 Mon Sep 17 00:00:00 2001 From: triton Date: Mon, 6 May 2013 02:39:19 +0100 Subject: [PATCH] Added a new constructor to TagType that takes a declaration. --- src/Bridge/Type.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Bridge/Type.cs b/src/Bridge/Type.cs index 3bf2614a..8e8a833f 100644 --- a/src/Bridge/Type.cs +++ b/src/Bridge/Type.cs @@ -160,6 +160,11 @@ namespace Cxxi { } + public TagType(Declaration decl) + { + Declaration = decl; + } + public Declaration Declaration; public override T Visit(ITypeVisitor visitor, TypeQualifiers quals)