Remove unused typedef.

This commit is contained in:
jzmaddock
2015-06-03 18:51:41 +01:00
parent 2f9faea67d
commit 4ed6c3e44b

View File

@@ -640,7 +640,6 @@ inline typename enable_if<is_unsigned<Integer>, Integer>::type eval_integer_modu
template <class Integer>
inline typename enable_if<is_signed<Integer>, Integer>::type eval_integer_modulus(const tommath_int& x, Integer val)
{
typedef typename make_unsigned<Integer>::type unsigned_type;
return eval_integer_modulus(x, boost::multiprecision::detail::unsigned_abs(val));
}