From d56c50ad5e4c452437f4cd405027565458d283eb Mon Sep 17 00:00:00 2001 From: triton Date: Wed, 21 Aug 2013 03:14:49 +0100 Subject: [PATCH] Added FunctionSynthKind property to function to keep what kind of synthesis occurred. --- src/AST/Function.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/AST/Function.cs b/src/AST/Function.cs index 2a30d8bd..e478fcd6 100644 --- a/src/AST/Function.cs +++ b/src/AST/Function.cs @@ -60,6 +60,11 @@ namespace CppSharp.AST } } + public enum FunctionSynthKind + { + None, + } + public class Function : Declaration, ITypedDecl, IMangledDecl { public Function() @@ -125,6 +130,7 @@ namespace CppSharp.AST } } + public FunctionSynthKind SynthKind { get; set; } public string Mangled { get; set; }