Browse Source

Added original function property to keep the original function where this one was synthetized from.

pull/47/merge
triton 12 years ago
parent
commit
f7be1cb5e7
  1. 2
      src/AST/Function.cs

2
src/AST/Function.cs

@ -132,6 +132,8 @@ namespace CppSharp.AST @@ -132,6 +132,8 @@ namespace CppSharp.AST
public FunctionSynthKind SynthKind { get; set; }
public Function OriginalFunction { get; set; }
public string Mangled { get; set; }
public override T Visit<T>(IDeclVisitor<T> visitor)

Loading…
Cancel
Save