mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-22 20:05:29 +00:00
Change binding generator to emit BindingsNotRewrittenException rather than NotImplementedException
This commit is contained in:
parent
51a7f0abdb
commit
741a4cfaac
|
@ -291,7 +291,7 @@ namespace Bind
|
|||
sw.WriteLine("[CLSCompliant(false)]");
|
||||
}
|
||||
|
||||
sw.WriteLine("public static {0} {{ throw new NotImplementedException(); }}", GetDeclarationString(f, Settings.Compatibility));
|
||||
sw.WriteLine("public static {0} {{ throw new BindingsNotRewrittenException(); }}", GetDeclarationString(f, Settings.Compatibility));
|
||||
}
|
||||
|
||||
private void WriteDocumentation(BindStreamWriter sw, Function f)
|
||||
|
|
Loading…
Reference in a new issue