3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 02:15:19 +00:00

Remove unnecessary "unsafe" qualifier on internal .NET API class.

This commit is contained in:
Christoph M. Wintersteiger 2016-10-06 16:36:19 +01:00
parent 9548b88e71
commit 5dec919217

View file

@ -363,7 +363,7 @@ def mk_dotnet(dotnet):
dotnet.write(' {\n\n')
dotnet.write(' [UnmanagedFunctionPointer(CallingConvention.Cdecl)]\n')
dotnet.write(' public delegate void Z3_error_handler(Z3_context c, Z3_error_code e);\n\n')
dotnet.write(' public unsafe class LIB\n')
dotnet.write(' public class LIB\n')
dotnet.write(' {\n')
dotnet.write(' const string Z3_DLL_NAME = \"libz3.dll\";\n'
' \n')