mirror of
https://github.com/Z3Prover/z3
synced 2025-08-14 23:05:26 +00:00
remove default constructor
This commit is contained in:
parent
89cc9bd333
commit
97aa46add3
1 changed files with 1 additions and 2 deletions
|
@ -28,9 +28,8 @@ enum event_handler_caller_t {
|
||||||
|
|
||||||
class event_handler {
|
class event_handler {
|
||||||
protected:
|
protected:
|
||||||
event_handler_caller_t m_caller_id;
|
event_handler_caller_t m_caller_id = UNSET_EH_CALLER;
|
||||||
public:
|
public:
|
||||||
event_handler(): m_caller_id(UNSET_EH_CALLER) {}
|
|
||||||
virtual ~event_handler() = default;
|
virtual ~event_handler() = default;
|
||||||
virtual void operator()(event_handler_caller_t caller_id) = 0;
|
virtual void operator()(event_handler_caller_t caller_id) = 0;
|
||||||
event_handler_caller_t caller_id() const { return m_caller_id; }
|
event_handler_caller_t caller_id() const { return m_caller_id; }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue