Change clearing mechanism to gmp_lib methods

pull/8/head
lukasz.rozmej 2021-11-04 21:43:01 +01:00
parent 06a771aaba
commit 7b5cc7eb8b
3 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ namespace MathGmp.Native
public void Dispose()
{
Clear();
gmp_lib.mpf_clear(this);
}
/// <summary>

View File

@ -40,7 +40,7 @@ namespace MathGmp.Native
public void Dispose()
{
Clear();
gmp_lib.mpq_clear(this);
}
/// <summary>

View File

@ -43,7 +43,7 @@ namespace MathGmp.Native
public void Dispose()
{
Clear();
gmp_lib.mpz_clear(this);
}
/// <summary>