29 lines
953 B
Diff
29 lines
953 B
Diff
From ab3d332508c21daff41fb64a8658cdc7cc74fc47 Mon Sep 17 00:00:00 2001
|
|
From: Cyril Bouvier <cyril.bouvier@lirmm.fr>
|
|
Date: Thu, 16 Dec 2021 17:12:25 +0100
|
|
Subject: [PATCH] dom_power argument is now an uint64_t to avoid problem with
|
|
32bit machine
|
|
|
|
---
|
|
src/kernel/system/givpower.h | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/kernel/system/givpower.h b/src/kernel/system/givpower.h
|
|
index eb784872..5644264d 100644
|
|
--- a/src/kernel/system/givpower.h
|
|
+++ b/src/kernel/system/givpower.h
|
|
@@ -71,11 +71,11 @@ namespace Givaro {
|
|
|
|
//! dom_power
|
|
template<class D, class TT>
|
|
- TT& dom_power(TT& res, const TT& n, long l, const D& F)
|
|
+ TT& dom_power(TT& res, const TT& n, uint64_t l, const D& F)
|
|
{
|
|
if (l == 0) return F.assign(res,F.one) ;
|
|
|
|
- unsigned long p = (unsigned long) l ;
|
|
+ uint64_t p = l;
|
|
bool is_assg = false ;
|
|
|
|
TT puiss; F.init(puiss); F.assign(puiss,n) ;
|