From 52060cb7e70c4c1e5737879ca44193940cf6eccc Mon Sep 17 00:00:00 2001 From: triton Date: Wed, 30 Jan 2013 14:45:50 +0000 Subject: [PATCH] Methods can now store what kind of conversion they need. --- src/Bridge/Method.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Bridge/Method.cs b/src/Bridge/Method.cs index d8fd2969..569722f9 100644 --- a/src/Bridge/Method.cs +++ b/src/Bridge/Method.cs @@ -90,5 +90,7 @@ namespace Cxxi public bool IsDefaultConstructor; public bool IsCopyConstructor; public bool IsMoveConstructor; + + public MethodConversionKind Conversion { get; set; } } } \ No newline at end of file