summaryrefslogtreecommitdiff
path: root/src/util/integer_gmp_imp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/integer_gmp_imp.h')
-rw-r--r--src/util/integer_gmp_imp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/integer_gmp_imp.h b/src/util/integer_gmp_imp.h
index ea7967023..c553baff9 100644
--- a/src/util/integer_gmp_imp.h
+++ b/src/util/integer_gmp_imp.h
@@ -62,8 +62,8 @@ public:
* For more information about what is a valid rational string,
* see GMP's documentation for mpq_set_str().
*/
- explicit Integer(const char * s, int base = 10): d_value(s,base) {}
- Integer(const std::string& s, unsigned base = 10) : d_value(s, base) {}
+ explicit Integer(const char* s, unsigned base = 10): d_value(s, base) {}
+ explicit Integer(const std::string& s, unsigned base = 10) : d_value(s, base) {}
Integer(const Integer& q) : d_value(q.d_value) {}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback