mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
AK+Userland: Remove NOESCAPE
See the next commit for an explanation
This commit is contained in:
committed by
Andrew Kaster
parent
d2b3007248
commit
a5f4c9a632
@@ -221,7 +221,7 @@ public:
|
||||
m_data.get<OwnPtr<Vector<Attribute>>>().clear();
|
||||
}
|
||||
|
||||
void for_each_attribute(NOESCAPE Function<IterationDecision(Attribute const&)> callback) const
|
||||
void for_each_attribute(Function<IterationDecision(Attribute const&)> callback) const
|
||||
{
|
||||
VERIFY(is_start_tag() || is_end_tag());
|
||||
auto* ptr = tag_attributes();
|
||||
@@ -233,7 +233,7 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
void for_each_attribute(NOESCAPE Function<IterationDecision(Attribute&)> callback)
|
||||
void for_each_attribute(Function<IterationDecision(Attribute&)> callback)
|
||||
{
|
||||
VERIFY(is_start_tag() || is_end_tag());
|
||||
auto* ptr = tag_attributes();
|
||||
|
||||
Reference in New Issue
Block a user