Skip to content

Commit 297e4c0

Browse files
committed
Use std::size_t for all size-typed operations in big-int
1 parent da31060 commit 297e4c0

File tree

4 files changed

+132
-146
lines changed

4 files changed

+132
-146
lines changed

src/big-int/bigint-func.cc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@
77

88
#include "bigint.hh"
99

10-
11-
BigInt
12-
pow (BigInt const &x, unsigned y)
10+
BigInt pow(BigInt const &x, std::size_t y)
1311
{
1412
BigInt a = x;
1513
BigInt r = 1;

0 commit comments

Comments
 (0)