mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
re-include get_error_msg_ex per issue #660
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
84aec95eda
commit
e4a00f6f6f
|
@ -463,6 +463,10 @@ extern "C" {
|
||||||
return _get_error_msg(c, err);
|
return _get_error_msg(c, err);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Z3_API char const * Z3_get_error_msg_ex(Z3_context c, Z3_error_code err) {
|
||||||
|
return Z3_get_error_msg(c, err);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void Z3_API Z3_set_ast_print_mode(Z3_context c, Z3_ast_print_mode mode) {
|
void Z3_API Z3_set_ast_print_mode(Z3_context c, Z3_ast_print_mode mode) {
|
||||||
Z3_TRY;
|
Z3_TRY;
|
||||||
|
|
|
@ -5118,6 +5118,13 @@ extern "C" {
|
||||||
Z3_string Z3_API Z3_get_error_msg(Z3_context c, Z3_error_code err);
|
Z3_string Z3_API Z3_get_error_msg(Z3_context c, Z3_error_code err);
|
||||||
/*@}*/
|
/*@}*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
\brief Return a string describing the given error code.
|
||||||
|
Retained function name for backwards compatibility within v4.1
|
||||||
|
*/
|
||||||
|
Z3_string Z3_API Z3_get_error_msg_ex(Z3_context c, Z3_error_code err);
|
||||||
|
/*@}*/
|
||||||
|
|
||||||
/** @name Miscellaneous */
|
/** @name Miscellaneous */
|
||||||
/*@{*/
|
/*@{*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue