Remove other general deprecations

This commit is contained in:
Tim Wojtulewicz 2022-06-16 12:29:42 -07:00
parent 6130d32440
commit fb16ce3711
16 changed files with 5 additions and 278 deletions

View file

@ -89,19 +89,6 @@ public:
bool Cache(const void* obj, Val* val);
Val* Lookup(const void* obj);
[[deprecated(
"Remove in v5.1. Use Frame::GetTriggerAssoc() / const void* interface instead.")]] bool
Cache(const CallExpr* call, Val* val)
{
return Cache((const void*)call, val);
}
[[deprecated(
"Remove in v5.1. Use Frame::GetTriggerAssoc() / const void* interface instead.")]] Val*
Lookup(const CallExpr* call)
{
return Lookup((const void*)call);
}
// Disable this trigger completely. Needed because Unref'ing the trigger
// may not immediately delete it as other references may still exist.
void Disable();