EventMgr: Drop src_val

This is a left over and hasn't been used since a while.
This commit is contained in:
Arne Welzel 2025-03-27 10:41:01 +01:00
parent 277e6d4129
commit bef923ebeb
2 changed files with 0 additions and 4 deletions

View file

@ -69,7 +69,6 @@ EventMgr::EventMgr() {
current_src = util::detail::SOURCE_LOCAL;
current_aid = 0;
current_ts = 0;
src_val = nullptr;
draining = false;
}
@ -79,8 +78,6 @@ EventMgr::~EventMgr() {
Unref(head);
head = n;
}
Unref(src_val);
}
void EventMgr::Enqueue(const EventHandlerPtr& h, Args vl, util::detail::SourceID src, analyzer::ID aid, Obj* obj,

View file

@ -123,7 +123,6 @@ protected:
util::detail::SourceID current_src;
analyzer::ID current_aid;
double current_ts;
RecordVal* src_val;
bool draining;
};