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 3a95c6b85..5af902ac6 100644
--- a/src/util/integer_gmp_imp.h
+++ b/src/util/integer_gmp_imp.h
@@ -361,8 +361,8 @@ public:
*/
Integer pow(unsigned long int exp) const {
mpz_class result;
- mpz_pow_ui(result.get_mpz_t(),d_value.get_mpz_t(),exp);
- return Integer( result );
+ mpz_pow_ui(result.get_mpz_t(), d_value.get_mpz_t(), exp);
+ return Integer(result);
}
/**
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback