Skip to content

Commit 01a8f70

Browse files
committed
Use std::size_t for all size-typed operations in big-int
1 parent 2429ac7 commit 01a8f70

File tree

3 files changed

+89
-89
lines changed

3 files changed

+89
-89
lines changed

src/big-int/bigint-func.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
BigInt
12-
pow (BigInt const &x, unsigned y)
12+
pow (BigInt const &x, std::size_t y)
1313
{
1414
BigInt a = x;
1515
BigInt r = 1;

0 commit comments

Comments
 (0)