Skip to content

Commit d2ca83b

Browse files
committed
Permit constructing parsert with a message handler
This is to provide a path to remove the long-deprecated messaget() constructor. Uses of this new constructor will be added in separate commits.
1 parent 6f2fd34 commit d2ca83b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/util/parser.h

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

15+
#include "deprecate.h"
1516
#include "expr.h"
1617
#include "message.h"
1718

@@ -39,7 +40,13 @@ class parsert
3940
last_line.clear();
4041
}
4142

43+
DEPRECATED(SINCE(2023, 12, 20, "use parsert(message_handler) instead"))
4244
parsert():in(nullptr) { clear(); }
45+
explicit parsert(message_handlert &message_handler)
46+
: in(nullptr), log(message_handler)
47+
{
48+
clear();
49+
}
4350
virtual ~parsert() { }
4451

4552
// The following are for the benefit of the scanner

0 commit comments

Comments
 (0)