diff --git a/src/Generator/Generators/CLI/CLIMarshal.cs b/src/Generator/Generators/CLI/CLIMarshal.cs index 3e857a0a..8e2b04d4 100644 --- a/src/Generator/Generators/CLI/CLIMarshal.cs +++ b/src/Generator/Generators/CLI/CLIMarshal.cs @@ -189,6 +189,11 @@ namespace Cxxi.Generators.CLI { throw new NotImplementedException(); } + + public bool VisitDelegate(Delegate @delegate) + { + throw new NotImplementedException(); + } } public class CLIMarshalManagedToNativePrinter : ITypeVisitor, @@ -407,5 +412,10 @@ namespace Cxxi.Generators.CLI { throw new NotImplementedException(); } + + public bool VisitDelegate(Delegate @delegate) + { + throw new NotImplementedException(); + } } }