Browse Source

Revert "Removed an unused field, literally. :)"

This reverts commit 3b863cc6ff.
pull/913/head
Joao Matos 9 years ago
parent
commit
e775e8991e
  1. 5
      src/AST/Function.cs

5
src/AST/Function.cs

@ -248,6 +248,11 @@ namespace CppSharp.AST @@ -248,6 +248,11 @@ namespace CppSharp.AST
public string Signature { get; set; }
public string Body { get; set; }
/// <summary>
/// Field associated in case of synthetized field acessors.
/// </summary>
public Field Field { get; set; }
public override T Visit<T>(IDeclVisitor<T> visitor)
{
return visitor.VisitFunctionDecl(this);

Loading…
Cancel
Save