removed bounded names for useless parameter

This commit is contained in:
Vincent Hanquez 2016-02-04 07:28:42 +00:00
parent 4858574955
commit d80a499582

View File

@ -71,7 +71,7 @@ gmpLog2 _ = GmpUnsupported
-- time wise through GMP -- time wise through GMP
gmpPowModSecInteger :: Integer -> Integer -> Integer -> GmpSupported Integer gmpPowModSecInteger :: Integer -> Integer -> Integer -> GmpSupported Integer
#if MIN_VERSION_integer_gmp(1,0,0) #if MIN_VERSION_integer_gmp(1,0,0)
gmpPowModSecInteger b e m = GmpUnsupported gmpPowModSecInteger _ _ _ = GmpUnsupported
#elif MIN_VERSION_integer_gmp(0,5,1) #elif MIN_VERSION_integer_gmp(0,5,1)
gmpPowModSecInteger b e m = GmpSupported (powModSecInteger b e m) gmpPowModSecInteger b e m = GmpSupported (powModSecInteger b e m)
#else #else