Skip to content

Commit b9889e1

Browse files
committed
Use std::size_t for all size-typed operations in big-int
1 parent 2ea9676 commit b9889e1

File tree

4 files changed

+91
-91
lines changed

4 files changed

+91
-91
lines changed

src/big-int/bigint-func.cc

Lines changed: 1 addition & 1 deletion
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)