File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ class BoundFunction final : public FunctionObject {
4343
4444 GC::Ptr<FunctionObject> m_bound_target_function; // [[BoundTargetFunction]]
4545 Value m_bound_this; // [[BoundThis]]
46- GC::ValueVector<Value> m_bound_arguments; // [[BoundArguments]]
46+ GC::ValueVector<Value> m_bound_arguments; // [[BoundArguments]]
4747};
4848
4949template <>
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ void FinalizationRegistry::remove_dead_cells(Badge<GC::Heap>)
5656 if (gc_color () == GC::Color::White)
5757 return ;
5858
59- auto removed = [](const FinalizationRecord& rec) -> bool {
59+ auto removed = [](FinalizationRecord const & rec) -> bool {
6060 return rec.target || rec.target ->gc_color () == GC::Color::White;
6161 };
6262
You can’t perform that action at this time.
0 commit comments