Skip to content

Commit fc7b43e

Browse files
committed
Remove deprecated messaget() constructor
It is now no longer possible to construct a messaget object that is not fully configured, i.e., lacks a message handler.
1 parent 1ed3679 commit fc7b43e

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

src/util/message.h

-8
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ Author: Daniel Kroening, [email protected]
1515
#include <sstream>
1616
#include <string>
1717

18-
#include "deprecate.h"
1918
#include "invariant.h"
2019
#include "source_location.h"
2120

@@ -191,13 +190,6 @@ class messaget
191190

192191
// constructors, destructor
193192

194-
DEPRECATED(SINCE(2019, 1, 7, "use messaget(message_handler) instead"))
195-
messaget():
196-
message_handler(nullptr),
197-
mstream(M_DEBUG, *this)
198-
{
199-
}
200-
201193
messaget(const messaget &other):
202194
message_handler(other.message_handler),
203195
mstream(other.mstream, *this)

src/util/parser.h

+1-7
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ Author: Daniel Kroening, [email protected]
1212
#ifndef CPROVER_UTIL_PARSER_H
1313
#define CPROVER_UTIL_PARSER_H
1414

15-
#include "deprecate.h"
1615
#include "expr.h"
1716
#include "message.h"
1817

@@ -40,8 +39,6 @@ class parsert
4039
last_line.clear();
4140
}
4241

43-
DEPRECATED(SINCE(2023, 12, 20, "use parsert(message_handler) instead"))
44-
parsert():in(nullptr) { clear(); }
4542
explicit parsert(message_handlert &message_handler)
4643
: in(nullptr), log(message_handler)
4744
{
@@ -138,11 +135,8 @@ class parsert
138135
column+=token_width;
139136
}
140137

141-
// should be protected or even just be a reference to a message handler, but
142-
// for now enables a step-by-step transition
143-
messaget log;
144-
145138
protected:
139+
messaget log;
146140
source_locationt source_location;
147141
unsigned line_no, previous_line_no;
148142
unsigned column;

0 commit comments

Comments
 (0)