aboutsummaryrefslogtreecommitdiff
path: root/bigint.h
diff options
context:
space:
mode:
Diffstat (limited to 'bigint.h')
-rw-r--r--bigint.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bigint.h b/bigint.h
index cff7bd4..c66dcf6 100644
--- a/bigint.h
+++ b/bigint.h
@@ -32,7 +32,7 @@ private:
//basically a debug check, but it can't hurt to have it since it takes few cpu cycles.
void checkconsistent();
- std::pair<Bigint,Bigint> divmod(const Bigint&,int depth,int maxdepth) const; //ignores all signs
+ static std::pair<Bigint,Bigint> divmod(Bigint a,const Bigint &div,int maxdepth); //ignores all signs
public:
Bigint();