Skip to content

Update deprecated method description #3180

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 15, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -219,13 +219,12 @@ static exprt int_of_hex_char(const exprt &chr)

/// Add axioms stating that the string `res` corresponds to the integer
/// argument written in hexadecimal.
/// \deprecated use add_axioms_from_int which takes a radix argument instead
/// \deprecated use add_axioms_from_int_with_radix instead
/// \param fresh_symbol: generator of fresh symbols
/// \param res: string expression for the result
/// \param i: an integer argument
/// \return code 0 on success
DEPRECATED(
"use add_axioms_for_string_of_int which takes a radix argument instead")
DEPRECATED("use add_axioms_for_string_of_int_with_radix instead")
std::pair<exprt, string_constraintst> add_axioms_from_int_hex(
symbol_generatort &fresh_symbol,
const array_string_exprt &res,
Expand Down