3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 02:15:19 +00:00

Remove disable_error_msg_prefix.

This wasn't used or actually implemented to do anything.
This commit is contained in:
Bruce Mitchener 2018-10-21 20:29:01 +07:00
parent 129353542c
commit a73cf590db
2 changed files with 0 additions and 7 deletions

View file

@ -62,7 +62,6 @@ static bool g_warning_msgs = true;
static bool g_use_std_stdout = false;
static std::ostream* g_error_stream = nullptr;
static std::ostream* g_warning_stream = nullptr;
static bool g_show_error_msg_prefix = true;
void send_warnings_to_stdout(bool flag) {
g_use_std_stdout = flag;
@ -80,10 +79,6 @@ void set_warning_stream(std::ostream* strm) {
g_warning_stream = strm;
}
void disable_error_msg_prefix() {
g_show_error_msg_prefix = false;
}
void format2ostream(std::ostream & out, char const* msg, va_list args) {
svector<char> buff;
BEGIN_ERR_HANDLER();

View file

@ -31,8 +31,6 @@ void set_warning_stream(std::ostream* strm);
void warning_msg(const char * msg, ...);
void disable_error_msg_prefix();
void format2ostream(std::ostream& out, char const* fmt, va_list args);
class warning_displayer {