diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-05-03 13:47:13 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-05-03 13:47:13 +0200 |
| commit | d9b0c05acf72206d00068e708c1e2ebd872b2586 (patch) | |
| tree | e230f02631491c95a29518ad123a7afb0f53f957 /src/big_int.cpp | |
| parent | 47f637d23bf44b637041383b739780d9959331db (diff) | |
Typo.
Diffstat (limited to 'src/big_int.cpp')
| -rw-r--r-- | src/big_int.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/big_int.cpp b/src/big_int.cpp index 8203f0522..5509545ca 100644 --- a/src/big_int.cpp +++ b/src/big_int.cpp @@ -40,7 +40,7 @@ typedef mp_int BigInt; void big_int_from_u64(BigInt *dst, u64 x); void big_int_from_i64(BigInt *dst, i64 x); void big_int_init (BigInt *dst, BigInt const *src); -void big_int_from_string(BigInt *dst, String const &s, bool &success); +void big_int_from_string(BigInt *dst, String const &s, bool *success); void big_int_dealloc(BigInt *dst) { mp_clear(dst); |