Skip to content

Commit 532a379

Browse files
author
Daniel Kroening
committed
gcc_message_handlert and console_message_handlert no longer implement ui interface
1 parent 69fbaa2 commit 532a379

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/util/cout_message.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Author: Daniel Kroening, [email protected]
1010
#ifndef CPROVER_UTIL_COUT_MESSAGE_H
1111
#define CPROVER_UTIL_COUT_MESSAGE_H
1212

13-
#include "ui_message.h"
13+
#include "message.h"
1414

1515
class cout_message_handlert:public stream_message_handlert
1616
{
@@ -26,7 +26,7 @@ class cerr_message_handlert:public stream_message_handlert
2626
cerr_message_handlert();
2727
};
2828

29-
class console_message_handlert:public ui_message_handlert
29+
class console_message_handlert : public message_handlert
3030
{
3131
public:
3232
// level 4 and upwards go to cout, level 1-3 to cerr
@@ -49,7 +49,7 @@ class console_message_handlert:public ui_message_handlert
4949
const bool always_flush;
5050
};
5151

52-
class gcc_message_handlert:public ui_message_handlert
52+
class gcc_message_handlert : public message_handlert
5353
{
5454
public:
5555
// aims to imitate the messages gcc prints

0 commit comments

Comments
 (0)