Remove deprecated Trigger constructor

This commit is contained in:
Tim Wojtulewicz 2024-08-04 21:22:59 -07:00
parent 535df5e263
commit a53cc4d01b
2 changed files with 0 additions and 13 deletions

View file

@ -89,12 +89,6 @@ protected:
double time;
};
Trigger::Trigger(std::shared_ptr<WhenInfo> wi, double timeout, const IDSet& _globals, std::vector<ValPtr> _local_aggrs,
Frame* f, const Location* loc)
: Trigger(std::move(wi), _globals, std::move(_local_aggrs), timeout, f, loc) {
Unref(this);
}
Trigger::Trigger(std::shared_ptr<WhenInfo> wi, const IDSet& _globals, std::vector<ValPtr> _local_aggrs, double timeout,
Frame* f, const Location* loc) {
timeout_value = timeout;