From e775e8991ed7fce6f8c92812de2dfd328d986b4d Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Wed, 16 Aug 2017 12:55:45 +0100 Subject: [PATCH] Revert "Removed an unused field, literally. :)" This reverts commit 3b863cc6ff2203313e684b47f9a33e397bbd6de6. --- src/AST/Function.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/AST/Function.cs b/src/AST/Function.cs index 9657479f..2c9fb372 100644 --- a/src/AST/Function.cs +++ b/src/AST/Function.cs @@ -248,6 +248,11 @@ namespace CppSharp.AST public string Signature { get; set; } public string Body { get; set; } + /// + /// Field associated in case of synthetized field acessors. + /// + public Field Field { get; set; } + public override T Visit(IDeclVisitor visitor) { return visitor.VisitFunctionDecl(this);