Skip to content

Commit 411b132

Browse files
committed
fixed OSX size_t mess
1 parent 821540b commit 411b132

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linbox/solutions/hadamard-bound.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ namespace LinBox {
371371
inline double FastCharPolyGoldsteinGrahamBound(const IMatrix& A, const Integer& infnorm)
372372
{
373373
Integer ggb(infnorm);
374-
ggb *= A.coldim();
374+
ggb *= static_cast<uint64_t>(A.coldim());
375375
ggb += 2;
376376
ggb *= infnorm;
377377
++ggb;

0 commit comments

Comments
 (0)