mirror of
https://github.com/Z3Prover/z3
synced 2025-06-05 21:53:23 +00:00
Remove disable_error_msg_prefix.
This wasn't used or actually implemented to do anything.
This commit is contained in:
parent
129353542c
commit
a73cf590db
2 changed files with 0 additions and 7 deletions
|
@ -62,7 +62,6 @@ static bool g_warning_msgs = true;
|
||||||
static bool g_use_std_stdout = false;
|
static bool g_use_std_stdout = false;
|
||||||
static std::ostream* g_error_stream = nullptr;
|
static std::ostream* g_error_stream = nullptr;
|
||||||
static std::ostream* g_warning_stream = nullptr;
|
static std::ostream* g_warning_stream = nullptr;
|
||||||
static bool g_show_error_msg_prefix = true;
|
|
||||||
|
|
||||||
void send_warnings_to_stdout(bool flag) {
|
void send_warnings_to_stdout(bool flag) {
|
||||||
g_use_std_stdout = flag;
|
g_use_std_stdout = flag;
|
||||||
|
@ -80,10 +79,6 @@ void set_warning_stream(std::ostream* strm) {
|
||||||
g_warning_stream = 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) {
|
void format2ostream(std::ostream & out, char const* msg, va_list args) {
|
||||||
svector<char> buff;
|
svector<char> buff;
|
||||||
BEGIN_ERR_HANDLER();
|
BEGIN_ERR_HANDLER();
|
||||||
|
|
|
@ -31,8 +31,6 @@ void set_warning_stream(std::ostream* strm);
|
||||||
|
|
||||||
void warning_msg(const char * msg, ...);
|
void warning_msg(const char * msg, ...);
|
||||||
|
|
||||||
void disable_error_msg_prefix();
|
|
||||||
|
|
||||||
void format2ostream(std::ostream& out, char const* fmt, va_list args);
|
void format2ostream(std::ostream& out, char const* fmt, va_list args);
|
||||||
|
|
||||||
class warning_displayer {
|
class warning_displayer {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue