File tree 1 file changed +6
-8
lines changed
1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -52,18 +52,16 @@ const mp_integer string2integer(const std::string &, unsigned base=10);
52
52
const std::string integer2binary (const mp_integer &, std::size_t width);
53
53
const mp_integer binary2integer (const std::string &, bool is_signed);
54
54
55
- // / \deprecated use numeric_cast <unsigned long long> instead
56
- DEPRECATED (" Use numeric_cast <unsigned long long> instead" )
55
+ // / \deprecated use numeric_cast_v <unsigned long long> instead
56
+ DEPRECATED (" Use numeric_cast_v <unsigned long long> instead" )
57
57
mp_integer::ullong_t integer2ulong(const mp_integer &);
58
58
59
- // / \deprecated use numeric_cast <std::size_t> instead
60
- DEPRECATED (" Use numeric_cast <std::size_t> instead" )
59
+ // / \deprecated use numeric_cast_v <std::size_t> instead
60
+ DEPRECATED (" Use numeric_cast_v <std::size_t> instead" )
61
61
std::size_t integer2size_t(const mp_integer &);
62
62
63
- // / \deprecated use numeric_cast <unsigned> instead
64
- DEPRECATED (" Use numeric_cast <unsigned> instead" )
63
+ // / \deprecated use numeric_cast_v <unsigned> instead
64
+ DEPRECATED (" Use numeric_cast_v <unsigned> instead" )
65
65
unsigned integer2unsigned(const mp_integer &);
66
66
67
- const mp_integer mp_zero=string2integer(" 0" );
68
-
69
67
#endif // CPROVER_UTIL_MP_ARITH_H
You can’t perform that action at this time.
0 commit comments