AK+Userland: Remove NOESCAPE

See the next commit for an explanation
This commit is contained in:
Matthew Olsson 2024-05-17 17:09:20 -07:00 committed by Andrew Kaster
parent d2b3007248
commit a5f4c9a632
Notes: sideshowbarker 2024-07-17 18:13:59 +09:00
16 changed files with 24 additions and 26 deletions

View file

@ -35,8 +35,8 @@ public:
return m_tasks.take_first();
}
void remove_tasks_matching(NOESCAPE Function<bool(HTML::Task const&)>);
JS::MarkedVector<JS::NonnullGCPtr<Task>> take_tasks_matching(NOESCAPE Function<bool(HTML::Task const&)>);
void remove_tasks_matching(Function<bool(HTML::Task const&)>);
JS::MarkedVector<JS::NonnullGCPtr<Task>> take_tasks_matching(Function<bool(HTML::Task const&)>);
Task const* last_added_task() const;