Skip to content

Commit 1b7b46e

Browse files
committed
Fix linter errors
1 parent 411f896 commit 1b7b46e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Libraries/LibJS/Runtime/BoundFunction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

4949
template<>

Libraries/LibJS/Runtime/FinalizationRegistry.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)